为什么我不能运行git add -uA?

时间:2013-09-19 15:57:23

标签: git

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

git add -A

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

git add -u

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

git add -uA

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

1 个答案:

答案 0 :(得分: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应该足以满足您的需求。