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。
我想知道我是否有一个文件并在那里进行了修改让我们说:
如何将此更改拆分为两个提交?是否可以?
您可以使用git add -p. 这会将更改分解为可以放入提交中的补丁。
git add -p
这是可能的git add -p
看到this page一个很好的教程。
this page