I'm kind of a git Noob and somehow I got my master and my origin/master branch to diverge. I actually don't want them to be diverged. How can I view these differences and 'merge' them?
|
|
You can review the differences with a:
before pulling it (fetch + merge) (see also "How do you get git to always pull from a specific branch?") When you have a message like:
, check if you need to update
You based commit C on commit A because that was the latest work you had fetched from upstream at the time. However, before you tried to push back to origin someone else pushed commit B. You can then merge or rebase. See Pro Git: Git Branching - Rebasing for details. Merge Use the git merge command:
This tells Git to integrate the changes from
The new merge commit M has two parents, each representing one path of development that led to the content stored in the commit. Note that the history behind M is now non-linear. Rebase Use the git rebase command:
This tells Git to replay commit C (your work) as if you had based it on commit B instead of A. The graph of history now looks like this:
Commit C' is a new commit created by the git rebase command.
Note that the history behind C' is still linear. The git pull command provides a shorthand way to fetch from origin and rebase local work on it:
This combines the above fetch and rebase steps into one command. |
|||||||||||||||||||||
|
|
I had this and am mystified as to what has caused it, even after reading the above responses. My solution was to do
Then that just resets my master (which I have to assume is screwed up) to the correct point, as represented by origin/master. |
|||||||||||
|
is a single command that can help you most of the time. |
|||||||
|
|
I found myself in this situation when I tried to rebase a branch that was tracking a remote branch, and I was trying to rebase it on master. In this scenario if you try to rebase, you'll most likely find your branch diverged and it can create a mess that isn't for git nubees! Let's say you are on branch my_reomte_tracking_branch, which was branched from master
And now you are trying to rebase from master as:
STOP NOW and save yourself some trouble! Instead, use merge as:
Yes, you'll end up with extra commits on your branch. But unless you are up for "un-diverging" branches, this will be a much smoother workflow than rebasing. See this blog for a much more detailed explanation. On the other hand, if your branch is only a local branch (i.e. not yet pushed to any remote) you should definitely do a rebase (and your branch will not diverge in this case). Now if you are reading this because you already are in a "diverged" scenario due to such rebase, you can get back to the last commit from origin (i.e. in an un-diverged state) by using:
|
|||||
|
|
In my case here is what I did to cause the diverged message: I did So in my case that simply meant origin/master was out of date. Because I knew no-one else was touching origin/master, the fix was trivial: |
|||
|
|
