gpt4 book ai didi

git 状态错别字 : what does the extra space do?

转载 作者:太空狗 更新时间:2023-10-29 14:38:39 25 4
gpt4 key购买 nike

我输入了

git status - uno 

得到回应

# On branch XYZ_XYZ
nothing to commit (working directory clean)

我知道我做了一些改变,所以这是不对的。然后我看到了打字错误...我本想输入

git status -uno

给出正确的响应:

# On branch XYZ_XYZ
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: abcd/xyz.cpp
# ...
#

(注意:git status -uno 在此系统上通常非常慢,但在拼写错误的情况下响应几乎是即时的。)

当我输入第一个命令时,git 检查什么状态?

最佳答案

git status - unogit status -- uno 的替代拼写, 也可以拼写为 git status uno .所有这些命令都会检查 uno 的状态存储库中的路径。由于不存在,git status很快就会告诉您没有什么可提交的。

接受可选路径规范的 git 命令使用 --分隔符以消除路径规范和它们之前的参数之间的歧义,例如选项和分支/提交名称。 -的使用和 --作为分隔符是一个有几十年历史的 Unix 约定,发明它是为了能够指定以 - 开头的参数.

关于git 状态错别字 : what does the extra space do?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22308888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com