📌  相关文章
📜  如何合并远程分支 - Shell-Bash 代码示例

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

代码示例1
//make sure you're on the local branch, then:

git pull origin YourRemoteBranch

//which is the same as:

git fetch origin YourRemoteBranch
git merge origin/YourRemoteBranch