赞
踩
假如我们现在要把自己分支A的代码合并到develop分支或者master分支,可以遵循以下步骤
git pull
git checkout develop
git merge A
git push 你配置的远程仓库名(一般为origin) develop