Git Community Book 中文版
http://gitbook.liuhui998.com/index.html
Git怎樣撤銷一次分支的合并Merge
https://segmentfault.com/q/1010000000140446
git 為某次提交新建分支(只合并某次提交到一個(gè)分支上)
https://segmentfault.com/q/1010000002966347
Git合并特定commits 到另一個(gè)分支
http://blog.csdn.net/ybdesire/article/details/42145597
// 合并某個(gè)分支上的單個(gè)commit
$ git cherry-pick 4dc5963
// sourcetree沒(méi)用過(guò)宛琅, 你可以嘗試點(diǎn)選遴選 (大概就是 cherry-pick的翻譯吧。掌桩。)
// 撤銷合并
$ git reset --hard
// 新開(kāi)本地分支,提交代碼
$ git branch -a
master
v_3.0.6
* v_3.0.8
$ git checkout -b kokia // 新建本地分支
$ git branch -a
master
v_3.0.6
v_3.0.8
* kokia
$ git add .
$ git commit -m "test" // commit勋拟,本地提交
$ git checkout v_3.0.8
$ git branch -a
master
v_3.0.6
* v_3.0.8
kokia
$ git merge kokia // 遠(yuǎn)程分支合并本地分支;
$ git log // 查看自己的,是否提交
$ git pull // 先拉去桶错,再提交remote
$ git push // 提交remote
$ git branch -d kokia // 刪除自己的本地分支属拾;