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