Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如文档中所示(以及此问题的答案):
git -u
git -A
是否有一个 1 行 git 命令只添加文件修改,而不是添加/删除?
我想要一种简单的方法来添加我的所有编辑,但不希望这个操作默认添加/删除文件(我会明确地这样做)。
你可以这样:
git add $(git diff-files --diff-filter=M --name-only)
资源:
我建议你使用
git add -p
它允许您选择您感兴趣的更改。