공부/Git

[Git] error: The following untracked working tree files would be overwritten by checkout:

작은소행성 2024. 1. 30. 10:53

 

 

develop 브랜치에서 다른 feature 브랜치로 checkout 하는데 다음과 같은 에러가 발생했다. 

 

error: The following untracked working tree files would be overwritten by checkout:

 

 

해결방법 

 

추적하지 않는 파일을 제거하면 된다. 

# == 적용하지 않고 무엇을 해야할 지만 보고 싶을 때 ==
git clean -fd --dry-run # 또는
git clean -fdn

# == 적용하고 싶을 때 ==
git clean -fd

 

 

 

 

 

 

 

반응형