赞
踩
情景描述
在gitlab上创建空仓库,只有一个master分支,一开始本地提交代码到master分支,然后新创建了一个develop分支,它是基于master分支的,在本地终端中输入命令却看不到这个develop分支,为什么?
其实你忘了获取远程更新。
解决:
- $ git fetch
-
- // 或者
- $ git fetch origin
然后
$ git branch -a
就可以看到了。
这里表示本地有一个分支master,远程有两个分支develop和master。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。