반응형

 

 

 

 

 

 

 

merge, checkout 등... 여러 상황에서 다음과 같은 에러가 발생할 수 있다.

 

remote: Counting objects: 6, done.
remote: Total 6 (delta 5), reused 6 (delta 5), pack-reused 0
Unpacking objects: 100% (6/6), done.
From https://github.com/xxxxx/xxx
* branch master -> FETCH_HEAD
Updating 531a1fe..445eb5f

error: The following untracked working tree files would be overwritten by checkout
오류가 발생한 파일 위치 및 이름
Please move or remove them before you can checkout.
Aborting

 

나의 경우 checkout을 시도하는 중에 에러가 발생했다.

The following untracked working tree files would be overwritten by checkout

 

 

▶ 해결방법

untracked file들을 모두 제거하는 명령어를 실행한다.

 

git clean -fd --dry-run

 

  • git clean : git이 추적하고 있지 않는 파일을 제거
  • -fd : f(파일) d(디렉토리)
  • --dry-run : 어떤 파일을 제거하는지 미리 확인

 

 

 

 

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기