我只有一个分支。几个月来我一直在使用
git push origin master
提交到我的本地存储库。昨晚我对本地存储库进行了一些较小的更改并尝试使用相同的命令进行推送后,出现了此错误:
error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
我用Google搜索,发现问题,比如这一个和这一个,但没有答案的这些问题解决了我的问题。
大多数答案都暗示了头部脱落的问题。但是我不认为我的头会松动。我也不认为我在错误的分支上(因为我只有一个分支...)
我做了一些实验来找出问题所在,这是我得到的结果:
(1)首先是我的git status
输出
# On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # egal.aux # egal.blg # egal.out # egal.pdf # egalcar.aux # egalcar.blg # egalcar.pdf nothing added to commit but untracked files present (use "git add" to track)
(2)输入时git reflog
,我可以看到我所有的本地提交,但是远程存储库不会更新。
(3)当我型git branch -a
,我得到
* master remotes/origin/master
(4)当我型git remote show origin
,我得到
* remote origin Fetch URL: http://github.com/CherryQu921/egaldoc_en Push URL: http://github.com/CherryQu921/egaldoc_en HEAD branch: master Remote branch: master tracked Local ref configured for 'git push': master pushes to master (fast-forwardable)
我认为输出的最后一行(“快速转发”)很奇怪,但是我不确定什么地方出错了...
fast-forwardable
意味着您可以将本地更改推送到远程分支机构,而不会犯罪:-)