赞
踩
clone Github 上的Repository,如下:
git clone git@github.com:FBing/design-patterns.git
使用 git branch命令,如下:
$ git branch
* master
*标识的是你当前所在的分支。
命令如下:
git branch -r
命令如下:
git branch -a
命令如下:
git branch [branch name]
例如:
git branch gh-dev
命令如下:
git checkout [branch name]
例如:
$ git checkout gh-dev
Switched to branch 'gh-dev'
创建分支的同时切换到该分支上,命令如下:
git checkout -b [branch name]
git checkout -b [branch name] 的效果相当于以下两步操作:
git branch [branch name]
git checkout [branch name]
命令如下:
git push origin [branch name]
例如:
git push origin gh-dev
命令如下:
git branch -d [branch name]
例如:
git branch -d gh-dev
命令如下:
git push origin :[branch name]
分支名前的冒号代表删除。
例如:
git push origin :gh-dev
命令如下:
git checkout [branch name]
例如:
$ git checkout gh-dev
Switched to branch 'gh-dev'
命令如下:
git add .
命令如下:
git commit -m "add my code to new branchB"
命令如下:
git push origin [branch name]
例如:
git push origin gh-dev
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。