1

在提交之前,我通常使用以下命令将新创建的文件添加到存储库:

git add -A

然后,我运行以下命令从存储库中删除已删除的文件:

git add -u

当我尝试一起运行这些命令时,我被告知它们是互斥的:

git add -uA

我显然错过了一些东西。为什么这些命令是互斥的?

4

1 回答 1

2

因为git add -A所做的一切git add -u,加上一些额外的:

   -A, --all
       Like -u, but match <filepattern> against files in the working tree in addition to
       the index. That means that it will
       find new files as well as staging modified content and removing files that are no
       longer in the working tree.

git add -A对于您正在做的事情应该足够了。

于 2013-09-19T16:41:24.250 回答