我正在尝试在git上提交一个新文件。
我使用以下内容在我的Repo中创建了一个新文件: 触摸help.txt git add help.txt git commit git push
但是当文件在本地仓库中时,它没有反映在github仓库中。
答案 0 :(得分:1)
原因和解决方案在git push
的输出中。
更新被拒绝,因为您当前分支的提示已落后 它的远程对手。整合远程更改(例如'git pull ......再次推动之前。请参阅'git中的'关于快进的说明' 推 - 帮'了解详情。
您的更改被远程设备拒绝,因为它的更改是您的本地分支所没有的。 你可以做到
git pull --rebase origin name-of-branch-you-want-to-push-to
git push origin name-of-branch-you-want-to-push-to