git branch myfeture 创建分支

git checkout myfeture

git add --all

git commit -m

git push origin myfeture

git checkout master

git merge myfeture

git push

04-25 20:03