NewProvidence-Group-Template 如何将最新的变更从开发分支转移到我当前的分支? 1 Commit all changes to branch your_branch (git status shows clean) 2 git checkout dev 3 git pull 4 git checkout your_branch 5 git merge dev - this merges changes from local dev to the your_branch. 6 resolve save conflicts, if they appear 7 git commit -m "" - commit your merge