error: Entry 'xxxxxx' not uptodate. Cannot merge.
1573 단어 error
I'm trying to update my repo from a remote branch and keep getting this error when I do a "git pull". as below,
xintan.chen@announce:~/ARM/m1-kernel$ git pull
Updating 59a968e..5f5a4e5
error: Entry 'drivers/amlogic/tvin/vdin.c' not uptodate. Cannot merge.
Answers:
There's a couple of ways to fix this but I've found git stash works good for me. It temporary puts your local changes into another place. Then you can pull, to grab the latest changes. And then you can get your local changes back.
Just like this:
$ git pull ...... file your_file.rb not up to date, cannot merge. $ git stash $ git pull $ git stash pop
there is another method to fix it as below
xintan.chen@announce:~/ARM/m1-kernel$git checkout -f HEAD
xintan.chen@announce:~/ARM/m1-kernel$git pull
Already up-to-date.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Qiita의 API를 부를 때 끝에 슬래시를 붙이면 http://~로 리디렉션되므로 조심합시다.제목대로. curl 결과는 . 예전에 보았던 오류에 근거한 박자를 만났습니다 이것은 메시지처럼 HTTP 통신을 시도할 때 iOS가 차단하는 사람입니다. URLSession 에 건네주고 있는 url는 확실히 https...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.