Programing

단일 파일에서 재시작 / 실행 취소 충돌 해결

lottogame 2020. 6. 3. 07:57
반응형

단일 파일에서 재시작 / 실행 취소 충돌 해결


충돌하는 여러 파일과 더 큰 자식 병합에서 파일을 해결 된 것으로 잘못 표시했습니다 ( git add FILE일부 편집 후 사용 )

이제 충돌 해결 시도를 취소하고 해당 파일을 다시 해결하고 싶습니다.

어떻게해야합니까?


여기에서 해결책을 찾았습니다 : http://gitster.livejournal.com/43665.html

git checkout -m FILE

그러면 부모 및 병합 기반에 대한 모든 정보를 포함하여 해결되지 않은 상태가 복원되어 해결을 다시 시작할 수 있습니다.


git reset HEAD FILE

$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)

참고 URL : https://stackoverflow.com/questions/14409420/restart-undo-conflict-resolution-in-a-single-file

반응형