您的位置:首页 > 其它

git push warning: push.default is unset 分析解决

2016-02-21 23:24 525 查看
git push
后提示如下错误信息

warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:

git config --global push.default matching

To squelch this message and adopt the new behavior now, use:

git config --global push.default simple


原因分析

matching
参数是 Git 1.x 的默认行为,其意是如果你执行
git push
但没有指定分支,它将 push 所有你本地的分支到远程仓库中对应匹配的分支。

而 Git 2.x 默认的是 simple,意味着执行
git push
没有指定分支时,只有当前分支会被 push 到你使用
git pull
获取的代码。

解决方案

1.修改git的全局配置,命令如下

git config --global push.default simple


2.警告是由于没有指定分支造成的,所以可以通过指定分支解决,命令如下

git push origin master

#master 可换为其他想要指定的分支
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  git