摘要: 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 阅读全文
posted @ 2012-02-23 19:52 zdai 阅读(154) 评论(0) 推荐(0) 编辑