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.
假设我最重要和最新的提交是 A,然后是 B,然后是 C。如果我想结合提交 B 和 C,我该如何做 git rebase?
最简单的是使用交互式变基
git rebase -i HEAD~3
这将pick在每个提交前面显示您的最后三个提交。如果您更改 to 的第二个实例,pick然后squash保存文件并退出,这会将两个提交压缩在一起。
pick
squash