以下のようなエラーが出る
CONFLICT(modify/delete)
Automatic merge failed; fix conflicts and then commit the result.
選択肢は2つ
- ファイルを削除
- ファイルを追加する
1. ファイルを削除
git rm res/layout/dialog_item.xml
2. ファイルを追加する
HEADのファイル変更を受け入れる
git add res/layout/dialog_item.xml
で、 git commit する
参考
git - How do I fix a merge conflict due to removal of a file in a branch? - Stack Overflow