git 提交代码步骤
git pull // 拉取代码
git add . // 把所有代码提交都再存区
git commit -m '提交信息'
git push // 把本地库的修改提交到远程库中
git 合并步骤
git checkout master/branch //切换到某个分支
gti pull // 拉取代码
git checkout master/branch //切换到某个分支
git pull // 拉取代码
git merge master //假设当前在test分支上面,把master分支上的修改同步到test分支上
git push // 把本地库的修改提交到远程库中

 git remote update origin --prune // 更新分支