當試圖添加所有我刪除的文件,而無需使用我在哪裏可以找到有關從git add -u到git add --update:/?的更改信息。
git rm
我找到了命令
git add -u
想象一下,我驚愕時did not work as advertised.
相反,我得到了以下警告。
warning: The behavior of 'git add --update (or -u)' with no path argument from a
subdirectory of the tree will change in Git 2.0 and should not be used anymore.
To add content for the whole tree, run:
git add --update :/
(or git add -u :/)
To restrict the command to the current directory, run:
git add --update .
(or git add -u .)
從哪裏可以找到有關從git add -u到git add的更改的文檔--update:/?
而且,顯然:/不是frowney-臉。這是一個實際的命令。
實際行爲還沒有改變,它只是警告你習慣於鍵入這兩個版本中的任何一個來指定你的意思。沒有參數的當前含義與「add -u」相同。所以如果你習慣於輸入,而不是「添加-u」,你將看不到任何改變。如果你的意思是獲得'cd root_of_git_work_tree; git add -u。; cd back_where_I_was',使用冒號斜線版本。 – torek