I've created a branch(say: branch1) from master. Recently I've modified the code in `branch1` and commited the code and a new pull request is requested.
Now that i've created another branch(say: branch2). I'm working on one of the issues. Today I've received an email that my branch1 is merged into master. I've got the latest changes to master by pulling the new changes. Now the master has HEAD revision.
As master has the latest code now, how do I get the changes to `branch2` from `master` ?
It would be great if you can help me on this.
Karthik
Assuming you are already on branch2
(you can check with git branch
), you can just git merge master
to merge the local master
branch into your current branch.
If you hadn't already pulled master
you could also do from your branch:
git fetch origin # fetches changes from origin but does NOT apply them git merge origin/master # merges master as it exists on origin into your branch
Note that this approach would not update your local master
branch though until you switched to it and did a git pull
.
Have a look at the Atlassian git Tutorials section on Branching and Merging for a more thorough explanation.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.