📌  相关文章
📜  github 分支到 master - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:32.158000             🧑  作者: Mango

代码示例1
git checkout master #checkout to master branch
git pull origin master #Now pull the latest changes in master,
git merge testBranch #Merge with the testBranch
git push origin master #Push the changes to master