H-Log
git pull error 본문
반응형
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 받으면 정상작동한다!
반응형
'dev-log > cs' 카테고리의 다른 글
[운영체제] 버스 (bus) (0) | 2023.09.27 |
---|---|
[운영체제] 현재의 운영체제들 (0) | 2023.09.27 |
[운영체제] 운영체제의 역사 (0) | 2023.09.27 |
[운영체제] 운영체제와 커널, 가상머신의 개념 (0) | 2023.09.27 |
gitignore not working (0) | 2021.05.21 |
Comments