Git: fatal: The current branch master has multiple upstream branches, refusing to push

git上直接
git push
报错
Git: fatal: The current branch master has multiple upstream branches, refusing to push

原方法:
使用命令git config remote.origin.push HEAD
后来发现出现的问题:git客户端查看git log 显示git正常推送,但是别人看不到(根本没有推送到远程)。

解决:
git push origin -u
这个意思是把本地分支 push到origin的分支上 -u表示同时建立关联,以后再推送到远程只需git push origin

你可能感兴趣的:(报错总结,git)