简单的Git 命令:获取仓库文件和切换远程分支
Posted Sonictl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的Git 命令:获取仓库文件和切换远程分支相关的知识,希望对你有一定的参考价值。
简单的Git 命令:获取仓库文件和切换远程分支
git clone git@gitlab.xxx.com:xxxxx.git //从远程clone 分支下来,一般是默认master。
* indigo-devel说明此时是在indigo-devel上。
=== 要切换到master: ====
git branch -r //查看远程分支,git branch -a //查看本地和远程分支。
如:
remotes/origin/master remotes/origin/indigo-devel*如果本地没有master,要创建master:
git checkout -b master remotes/origin/master //本地创建master分支,并与远程remotes/origin/master同步
git branch //检查本地当前分支
=== 切换到其他分支: ====
git checkout hydro-devel //从master 切换到 hydro-devel 分支
git checkout indigo-devel //从hydro 切换到 indigo-devel 分支
git checkout master // 从indigo-devel 切换到 master 分支
**有关Git,更多教程参见: http://edu.csdn.net/course/detail/1223
以上是关于简单的Git 命令:获取仓库文件和切换远程分支的主要内容,如果未能解决你的问题,请参考以下文章