반응형
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 : 어떤 파일을 제거하는지 미리 확인
반응형
'Dev Tools' 카테고리의 다른 글
[SVN] SVN 다운로드 (tortoisesvn) (0) | 2021.11.08 |
---|---|
[Eclipse] DB 모델링 및 exERD Plugin 설치 방법 (0) | 2021.09.30 |
[VS Code] 기초적인 ESLint 사용 방법 (0) | 2021.07.31 |
[git] 다양한 문제 상황 해결하기 (0) | 2021.07.24 |
[VS CODE] 자동 줄 맞춤 (1) | 2021.07.21 |
최근댓글