Benim için git clean -ftüm * .oig dosyaları kaldırıldı. Ve daha önce orada olanları saklıyor.
Birleşmeden sonra (neredeyse) böyle görünüyordu:
$ 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/birleştirme işleminden önce izlenmemiş bir dosya olarak zaten vardı. .idea/misc.xml.orig(ve çok daha fazlası) kaldırılmak zorunda kaldı.
=> Kullanarak git clean -f:
$ git clean -f
Removing .idea/misc.xml.orig
sonuçlandı:
$ 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/