git branch myfeture 创建分支
git checkout myfeture
git add --all
git commit -m
git push origin master
git checkout master
git merge myfeture
git push
git创建分支与合并分支
原文:http://www.cnblogs.com/djdliu/p/4969898.html