拜托,帮助我!
我有一个原始来源的回购。 (基础项目)和许多叉子。
我如何自动将bug修复从forks转移到基础项目?
我使用bitbucket。
谢谢!
答案 0 :(得分:0)
您需要签出所需的分支,然后将其合并到您的本地分支。
# checkout the desired branch to which you want to merge the code into
git checkout <main branch>
# update the local repo with all the code from the remote
git fetch --all --prune
# merge side branch to the main branch
git pull origin <main branch>
# Merge the side branch
git merge <side branch>
<强> Example:
强>
git checkout master
git fetch --all --prune
git pull origin master
git merge side_branch