赞
踩
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 <branch> -u
这个意思是把本地分支 push到origin的分支上 -u表示同时建立关联,以后再推送到远程只需git push origin
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。