我在分支机构中创建了一个文件,将其合并为主文件,但是我有一个错误推送:
> git push origin master
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://nunito@tdk.com/
stash/scm/tdk-apps/tdk-admin-app.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and merge the remote changes
hint: (e.g. 'git pull') before pushing again.
这是> git status :
# On branch development
nothing to commit, working directory clean
这是> git pull
Password for 'https://nunito@tdk.com/':
Already up-to-date.
答案 0 :(得分:2)
假设您正在从事分支机构的开发工作。 - 在推前尝试拉动。还提示提示:
git pull origin development
然后:
git push origin development
答案 1 :(得分:0)
您的更改似乎与远程存储库不同步。
git pull
如果有任何冲突,您需要解决它们。否则你就可以推。
如果您确定远程更改不是您希望保留的更改,也可以覆盖远程分支。
git push origin +development
在这种情况下,“+”强制覆盖。
我不建议在团队环境中工作时强制更新,但是您可能会删除其他开发人员更改。