分支的管理
$ git branch
iss53
* master
testing$ git branch -v
iss53 93b412c fix javascript issue
* master 7a98805 Merge branch 'iss53'
testing 782fd34 add scott to the author list in the readmes$ git branch --merged
iss53
* master$ git branch --no-merged
testingLast updated