git branch <branch-name> |
Create branch |
git branch |
Show local branches |
git branch -r |
Show remote branches |
git branch -a |
Show all remote and local branches |
git checkout <branch-name> |
Switch to another branch |
git checkout -b <branch-name> |
create and checkout branch at the same time |
git branch -d <branch-name> |
delete branch |
git diff master..feature |
compare two branch |
git show d210c6ccc3 -- svl/inc/svl/itemset.hxx |
show commit file changed |
git show --pretty="" --name-only bd61ad98 |
show commit files |
git show --color --pretty=format:%b eeeba59af |
show modified section |
git merge master |
syn current branch with master branch |
git branch -m <new-branch-name> |
Rename branch(Go to the branch you want to rename then execute this command) |