git merge 会生成一个新得合并节点,而rebase不会
比如:
d---e test
/
a---b---c---f master
使用merge合并:
d--------e
/ \
a---b---c---f----g test, master
而使用rebase则:
a---b---d---e---c'---f' test, master
使用git pull时默认是merge, 加 --rebase参数使其使用rebase方式
git pull --rebase
一些git命令:https://www.coonote.com/git/git-manual.html
创建远程分支: git push origin master:zz
删除远程分支: git push origin :zz
创建本地跟踪指定远程分支: git co -t origin/zz
github fork 之后,如原repo有更新, 用下面操作更新:
git remote add firstguy git://github.com/firstguy/repo.git
after that's all set up, you should indeed be able to
git pull firstguy master
git push origin