반응형
Notice
Recent Posts
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Today
Total
관리 메뉴

H-Log

git pull error 본문

dev-log/cs

git pull error

hong6v6 2021. 5. 10. 13:05
반응형

git에서 main(master)를 pull받으려는데, 아래와 같은 에러가 발생했다.

error: Pulling is not possible because you have unmerged files. 
hint: Fix them up in the work tree, and then use 'git add/rm <file>' 
hint: as appropriate to mark resolution and make a commit.

git add *, git commit- m 'merge', git merge main 등 해보아도 아무런 변화가 없었다

이유는 로컬이랑 원격에 같은 파일이 있는데 로컬에서 아직 merge가 안됐다고 인식했기 때문이었다.

 

그리고 찾은 방법

git status
git commit -am 'merge'

status : 상태 확인 명령어

 

위 명령어를 입력해준 후 pull 받으면 정상작동한다!

반응형
Comments