나를 위해 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/