git提交代码到自己的分支,并合并到主分支的完整流程。 孙叫兽 2021-06-28 268 阅读1分钟 我在分支sml ,主分支master git status git add . git commit -m"xxx" git pull origin master git push git checkout master git pull origin master git merge sml git push