list the different files in two branches
1
git diff branch1 branch2 --stat
list the differences in detail in two branches
1
git diff branch1 branch2
Relpace one file from branch1 to branch2
1
2git checkout branch2
git checkout --patch branch1 filenameStart a new branch1
1
git checkout -b NewBranch
List branches in remote git
1
git branch -a