赞
踩
链接:https://learngitbranching.js.org
- git commit
- git commit
- git branch bugFix
- git checkout bugFix
- git checkout -b bugFix
- git commit
- git checkout master
- git commit
- git merge bugFix
- git checkout -b bugFix
- git commit
- git checkout master
- git commit
- git checkout bugFix
- git rebase master
git checkout c4
- git checkout bugFix^
- 或
- git chekcout bugFix
- git checkout HEAD^
- git branch -f master c6
- git branch -f bugFix c0
- git checkout c1
- git reset HEAD^
- git checkout pushed
- git revert HEAD
git cherry-pick c3 c5 c7
git rebase -i HEAD~4
- git rebase -i HEAD~3/git cherry-pick bugFix
- git branch -f master bugFix
- git rebase -i HEAD~2 #修改C2和C3的顺序
- git commit --amend
- git rebase -i HEAD~2 #修改C3'和C2''顺序
- git branch -f master
- git checkout master
- git cherry-pick newImage
- git commit --amend
- git cherry-pick caption
- git tag v0 c1
- git tag v1 c2
- git checkout c2
git commit
- git rebase master bugFix
- git rebase bugFix side
- git rebase side another
- git branch -f master another
git branch bugWork HEAD~^2~
- git checkout one
- git cherry-pick c4 c3 c2
- git checkout two
- git cherry-pick c5 c4 c3 c2
- git branch -f three c2
git clone
- git commit
- git checkout o/master
- git commit
git fetch
git pull
- git clone
- git fakeTeamwork 2
- git commit
- git pull
- git commit
- git commit
- git push
- git clone
- git fakeTeamwork 1
- git commit
- git pull --rebase
- git push
- git reset --hard o/master
- git checkout -b feature C2
- git push origin feature
- git fetch
- git rebase o/master side1
- git rebase side1 side2
- git rebase side2 side3
- git rebase side3 master
- git push
- git checkout master
- git pull origin master
- git merge side1
- git merge side2
- git merge side3
- git push origin master
- git checkout -b side o/master / git branch -f side master
- git commit
- git pull --rebase
- git push
- git push origin master
- git push origin foo
- git push origin foo:master
- git push origin master^:foo
- git fetch origin master^:foo
- git fetch origin foo:master
- git checkout foo
- git merge master
- git pull origin :bar
- git push origin :foo
- git pull origin bar:foo
- git pull origin master:side
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。