码迷,mamicode.com
首页 > 其他好文 > 详细

git问题 next fetch will store in remotes/origin

时间:2016-09-21 13:14:17      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

项目在git的下无法查找到需要的Branch

技术分享

但是在Bitbucket下可以查到到

技术分享

通过GitBash,发现git branch -a与git remote show origin 输出的远程分支不一样,git remote show origin命令输出多余的分支:
branch_XXXX_XXXX   new ( next fetch will store in remotes/origin)

这是因为it branch -a 输出的是本地仓库的远程分支信息,而git remote show origin需要联网输出实时的远程仓库的分支信息。
出现new ( next fetch will store in remotes/origin),由于远程新增了分支,而本地并没有同步信息导致的。

解决方法:git fetch origin  //从远程仓库更新信息

这时在switch/checkout的branch中就可以找到新增的分支信息,切换到新分支即可。

 

git问题 next fetch will store in remotes/origin

标签:

原文地址:http://www.cnblogs.com/lyy-2016/p/5892193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!