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
반응형
'공부 > Git' 카테고리의 다른 글
[Git] master -> main 합치기 (덮어쓰기) (0) | 2023.12.07 |
---|---|
[GitHub] GitHub 인증 오류 해결 : https-urls for information on currently recommended modes of authentication. (0) | 2023.10.12 |
[git] fatal: will not add file alias 'filename' ('filename' already exists in index) (0) | 2022.11.15 |
[Jenkins] jenkins github 연결하기 (0) | 2022.05.25 |
[github] Git Action 이용해서 티스토리 게시글 깃허브에 업로드하기 (0) | 2022.04.14 |