The following untracked working tree files would be overwritten by merge

이의현·2021년 4월 7일
1

git

목록 보기
2/2

git - The following untracked working tree files would be overwritten by merge


1. 문제정의

github 저장소 변경된 데이터를 pull한 뒤, 커밋하려고 하는데, The following untracked working tree files would be overwritten by merge 에러가 생겼다.

2. 원인추론

github 저장소의 origin/master 브랜치와 로컬 저장소 master 브랜치가 다른 듯하다.


3. 조치방안 작성과 구현 단계

Please move or remove them before you marge.

1. git add -A		// 옵션 -A, 모든 변경내용을 Staging Area으로 넘긴다. 

2. git stash 		// 현재 상태를 임시 저장
3. git pull		// github 저장소의 변경사항을 pull

4. git push		// Staging Area에 있는 내용을 github저장소로 push


참고:
https://backlog.com/git-tutorial/kr/stepup/stepup3_1.html
https://gmlwjd9405.github.io/2018/05/18/git-stash.html

profile
상상을 개발로

0개의 댓글