#提交代码到远程分支
git clone git-url
git add file_name
git commit -m ''
git push origin 分支名
合并分支到master
git checkout master
git merge 分支名
git push origin master