私git clean -fはすべての* .oigファイルを削除しました。そして、すでにそこにあったものを保持します。
これは、マージ後の(ほとんど)外観です。
$ git status
On branch feature/xyz
Your branch is ahead of 'origin/feature/xyz' by 568 commits.
  (use "git push" to publish your local commits)
Untracked files:
  (use "git add <file>..." to include in what will be committed)
    .idea/codeStyles/
    .idea/misc.xml.orig
.idea/codeStyles/追跡前のファイルとして、マージ前にすでに存在していました。.idea/misc.xml.orig(そしてもっとたくさんの)削除する必要がありました。
=>使用git clean -f:
$ git clean -f
Removing .idea/misc.xml.orig
をもたらしました:
$ git status
On branch feature/xyz
Your branch is ahead of 'origin/feature/xyz' by 568 commits.
  (use "git push" to publish your local commits)
Untracked files:
  (use "git add <file>..." to include in what will be committed)
    .idea/codeStyles/