我昨天在家用电脑上对Github上的一个项目进行了一些更改。 现在我刚从我的工作计算机上对同一个项目做了一些新的改动。
我尝试提交并推送git push
,但是git说:
error: failed to push some refs to 'https://github.com/...'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. If you did not intend to push that branch, you may want to
hint: specify branches to push or set the 'push.default' configuration variable
hint: to 'simple', 'current' or 'upstream' to push only the current branch.
所以我必须使用以下命令:
git push --set-upstream origin BEHST;
推送顺利但我在Github网页上看不到我的更改。
有谁知道为什么?
如何将我的git更改传播到我的Github网页?
答案 0 :(得分:0)
您是否在推送之前更新了项目的代码?
在推送任何内容之前,您需要git pull origin master
。
我认为您使用origin作为遥控器的名称。
您需要在推送前拉动,以便在推送内容之前使本地存储库保持最新状态。这有助于在本地解决冲突。