알림: 현재 지점의 최신 제출이 대응하는 원격 지점보다 뒤떨어지기 때문에 업데이트가 거부됩니다.알림: 다시 밀어넣기 전에 원격 변경과 합칩니다. (예를 들어'git pull...')자세한 내용은 "git push --help"의 "No

2194 단어 GitError
:git push origin master
To https://github.com/LLLUZHAO/Test.git
 ! [rejected]        master -> master (non-fast-forward)
error:   'https://github.com/LLLUZHAO/Test.git'  
 : , 。
 : , (  'git pull ...')。 
 :'git push --help'   'Note about fast-forwards'

gitpush를 사용하다가 오류가 발생했습니다.
git fetch origin master 입력:
:git fetch origin master
  https://github.com/LLLUZHAO/Test
 * branch            master     -> FETCH_HEAD

분기 보기:
:git branch -a
* master
  remotes/origin/master

로컬 브랜치와 원격 브랜치의 차이점을 살펴보십시오.
:git log -p master ..origin/master
commit 37d982b8e509976f0656a263a58205ccd58a0b99 (origin/master)
Author: zhao <[email protected]>
Date:   Tue Mar 10 05:30:56 2020 +0800

    update file name

diff --git a/11 b/11
new file mode 100644
index 0000000..d1f7637
--- /dev/null
+++ b/11
@@ -0,0 +1,2 @@
+lurongming
+zhaolu

결합:
:git merge origin/master
  2058905..37d982b
Fast-forward
 11 | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 11
:ls
1	11	2	3

서류 11이 많아졌어요.
로컬 기준으로 덮어쓰기를 선택할 수 있습니다.
:git push origin master -f

이러면 안 돼...

좋은 웹페이지 즐겨찾기