Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Merge without removing the other branch to pull the changes

Tags:

git

git-merge

I searched a lot but was not able to find a confident solution(pardon me as I am new to git and maybe I didn't get some term well). So I will state my exact problem here:

  1. I have a software (say in branch main) of which I just released v5.0 and then I created a new branch (say 5b) to fix all the issues that come in the branch.

  2. All the new features are being added to main branch.

  3. Now I have to supply a build with the new features to someone, but I also want to have all the bugfixes.

  4. My logic says that I can pull all the changes from 5b, merge it with main and make a build.

The only problem is that I want to keep that branch 5b as it is so that other fixes can be added to it. While in the main, all the changes from 5b should be available.

Please let me know how to accomplish this. A step wise answer with a bit of detail will be really helpful.

Thanks,

like image 495
Vivek V Dwivedi Avatar asked Jun 03 '13 11:06

Vivek V Dwivedi


1 Answers

You have a branch - main

You have a branch with bug fixes - 5b

Now in order to merge your bug fixes changes to main,

pull latest changes from main branch:

 git checkout main
 git pull origin main

merge the changes in main branch to 5b branch (5b branch is up to date with main branch):

 git checkout 5b
 git pull origin 5b
 git merge main
 git push origin 5b

merge your 5b branch changes back to main:

 git checkout main
 git merge 5b
 git push origin main

This will not remove your 5b(bug_fixes) branch or main branch. you can keep merging your bug fixes branch changes to main this way.

like image 58
Chubby Boy Avatar answered Sep 24 '22 23:09

Chubby Boy