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.
たとえば、3つのgitコミットがA, BありCます。使い続けながら一緒squash Aにできますか?はいの場合、どうすればこれを達成できますか?CBgit rebase
git
A, B
C
squash
A
B
git rebase
はい、競合しない限り、それを行うことができます(または競合時に修正できます)。
インタラクティブモード(git rebase -i)では、行を並べ替えてまとめ、スカッシュとしてマークします。
git rebase -i
同じ方法を使用して、コミットを並べ替えたり削除したりできます。