git创建分支与合并分支
git branch myfeture 创建分支
git checkout myfeture
git add --all
git commit -m
git push origin myfeture
git checkout master
git merge myfeture
git push
耐得住寂寞,守得住繁华
git branch myfeture 创建分支
git checkout myfeture
git add --all
git commit -m
git push origin myfeture
git checkout master
git merge myfeture
git push