git 语句的使用
clone git代码
- git clone git地址 (克隆所有版本)
- git clone -b 分支名 git地址
git clone -b debug https://github.com/bcit-ci/CodeIgniter.git (克隆debug版本)
查看git 提交日志
- git log
新建分支
- git branch qa ( 创建qa分支)
- git checkout qa (切换到qa)
- git checkout -b qa ( 创建并切换到qa分支)
删除分支
- git push origin --delete Chapater6 可以删除远程分支Chapater6
- git branch -d Chapater8 可以删除本地分支(在主分支中)