git branch 查看所有分支以及当前所在分支
git pull 拉去代码
git push 推送代码
git commit -m"提交代码"
git checkout trunk //切换trunk分支
git checkout -b hotfix/refund //拉去一个名字为 hotfix/refund 的新分支
git merge 分支名 合并分支
----------------------------------------------------