首页 > 其他 > 详细

git执行pull命令时,报错

时间:2015-01-16 09:52:09      阅读:1054      评论:0      收藏:0      [点我收藏+]

在图形界面中,执行拉取操作时,出现下面的错误。

You asked to pull from the remote ‘origin‘, but did not specify
a branch. Because this is not the default configured remote
for your current branch, you must specify a branch on the command line.

 

解决办法:

Edit your .git/config

[branch "master"]
  remote = origin
  merge = refs/heads/master

 

Now you can simply git push and git pull.

 

参考地址:http://stackoverflow.com/questions/4847101/git-which-is-the-default-configured-remote-for-branch

git执行pull命令时,报错

原文:http://www.cnblogs.com/wangkongming/p/4227739.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!