摘要:
1.Branch is just a pointer called HEAD which points to the current snapshot.2.Create a new branch:git branch [branch-name].3.Switching to an existing branch:git checkout [new branch].4.Merge branch: merge a branch to the mater branch, just $git checkout master;$git merge [another branch]. After merg 阅读全文