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.
そのベースに関してコミットのパッチを生成する必要があります。そのコミットにはタグが付けられています。939023 のようにコミットすると 213232 になり、213232 にラベルを付けます。ラベルが付けられたので、213232 と 939023 の違いを見つける必要があります。
つまり、ベースにラベルが付けられているコミットの差分を生成する方法が必要です。
何か案は?
git diff 939023..213232
git diff <commit> <commit>~
これは、コミットとその親の違いを示します (「ベース」と言うときは親を意味すると仮定します)。
短いバージョン:
git show <commit>