Please move or remove them before you switch branches.

boingboing·2023년 10월 19일
0
  • git 상에서 untracked 된 파일이 있음.

해결 1

git clean -f 
  • 이 파일들이 날아가므로 주의
  • 필요없는 파일이라는 확신이 있을 때만 사용

해결 2

  • ADD, COMMIT 시키기
git add EgnomeIMS/EgnomeIMS/__pycache__/wsgi.cpython-39.pyc
git commit -m "Stashing untracked file before branch switch"
git checkout my_branch 

0개의 댓글