git mergeコマンドにおけるカレント・ブランチとマージ・ブランチの関係

Conflict解消操作の例
|
1 2 3 4 5 6 7 8 9 |
$ git merge fix/foo_range ### コンフリクト発生 ### $ git checkout --ours foo_module.c # 「現在の変更」でワークを上書きする $ git add foo_module.c # 「ワーク」=「現在の変更」をステージングする $ git commit -m "コミットメッセージ" |