在添加准备提交的更新时,我经常使用git add -p
。
但是,对新文件也可以这样做吗?它似乎并不仅限于对现有文件的编辑。
答案 0 :(得分:0)
命令git add
用于向存储库添加新文件并告诉Git您希望更改的文件在下次提交中。
这有很多优点,因为git commit只提交那些已经明确添加的文件。注意SVN add仅用于向repo添加新文件。
-p, --patch Interactively choose hunks of patch between the index and the work tree and add them to the index. This gives the user a chance to review the difference before adding modified contents to the index.