作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在多个开发人员之间共享的 git repo 的问题。一个分支似乎丢失了(有点),当我尝试使用此分支推送到远程存储库时,我收到以下消息...
To git@hades:bbis.git
* [new branch] dompdf0.52 -> dompdf0.52
! [rejected] live -> live (non-fast-forward)
error: failed to push some refs to 'git@hades:bbis.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
live
分行或
dompdf0.5.2
分支(我创建了这两个,但已将它们推送到远程存储库 - 它们甚至在 gitweb 界面中显示为 HEADS)。即使开发人员做了
git pull --all
它仍然没有将这些分支 pull 下来。
master
,但是在查看
live
的短日志时它显示的分支
live
在
master
的同一点在
master
短文。
live
分支位于远程仓库中,但未显示在主仓库日志中。
gitk
的任何图片,请告诉我
git fetch
来解决错误消息和一个
git pull
但无济于事。我唯一没有尝试过的是
git push --force
因为我不想失去我的历史。
fatal: ref ed2cacdacad22c75ca765cfc996304c8c7c8a654 is not a symbolic ref
fatal: ref 98c37bd8a9ef2fc16e882c17b4c04f417ae7b2b2 is not a symbolic ref
最佳答案
您所遇到的只是您不允许推送,因为有人更新了其间的分支。您需要先 pull 此分支,然后才能推送更改。 git pull --all 不起作用的原因可能是因为您的本地实时分支未设置为跟踪源/实时
尝试这个:
git branch --set-upstream live origin/live
git checkout live
git pull
git push
关于git - 无法将本地分支推送到远程 Git 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6369925/
我是一名优秀的程序员,十分优秀!