branch
新建分支
git init
git add
git commit
先新建一个仓库以及master
然后新建分支
git branch BranchName
然后切换分支
git checkout BranchName
在linux上连接github
- 同样需要先创建git的密匙,并且将其与自己账户挂钩
http://www.cnblogs.com/Phoenix-blog/p/7748314.html
这篇文章是在windows下进行的,在创建密匙那部分,会提示你创建的密匙在哪里获取
可以去取得
然后连接即可正常使用
git clone 与 pull
git pull 是 git fetch 和merge 的合成版本
而clone则是将整个项目取下来放到相应位置上