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 で 3 つのコミットを行いました
git checkout Branch B git merge --squash A git commit -m "B:merge A into B by squash"
スカッシュによってブランチ A が B にマージされたことを検出するにはどうすればよいですか?
git-branchの--mergedパラメーターは、特定のブランチまたはコミットとマージされたブランチ リストを提供します。そのため、そのコマンドで確認できます:
git-branch
--merged
git branch --merged B
ブランチ A がリストにある場合、はい、ブランチ B にマージされます。