Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Merge conflicts updating from upstream

I'm trying to get started with git on a github project. (I've been using CVS, SVN and hg for years; git is hard to get my head around). I'm following the instructions as precisely as I can and simply cannot make it work.

I clone my forked project:

git clone [email protected]:davidgiven/linux-allwinner.git

As recommended, I add an 'upstream' remote that tracks the project that my one is forked from:

git remote add upstream https://github.com/amery/linux-allwinner.git

I fetch from it:

git fetch upstream

All this works fine. But, it's been a week or so since I forked the project, and upstream have been making changes. So I want to pull in those changes. I'm currently in the right branch --- allwinner-v3.0-android-v2 --- so I merge from upstream into my branch:

git merge upstream/allwinner-v3.0-android-v2

...and I get merge conflicts.

CONFLICT (add/add): Merge conflict in arch/arm/mach-sun5i/pm/standby/common.h
CONFLICT (add/add): Merge conflict in arch/arm/mach-sun5i/pm/standby/Makefile
CONFLICT (add/add): Merge conflict in arch/arm/mach-sun5i/pm/standby.S
CONFLICT (add/add): Merge conflict in arch/arm/mach-sun5i/pm/Makefile
[etc]

Now, I've checked in nothing; I haven't started work yet, and my project is completely untouched since I forked it. Therefore it should not be possible to have any conflicts. But there are some; what's going on, and how do I fix it?

Update:

git show-branch HEAD upstream/allwinner-v3.0-android-v2 shows this, which I have to say I don't understand a word of:

! [HEAD] arm: sun3i: add getioaddr macro
 ! [upstream/allwinner-v3.0-android-v2] arm: sun3i: updated irq handling and machine_desc to 3.0
--
 + [upstream/allwinner-v3.0-android-v2] arm: sun3i: updated irq handling and machine_desc to 3.0
 + [upstream/allwinner-v3.0-android-v2^] arm: sunxi: renable early_printk in all _defconfig except crane's
+  [HEAD] arm: sun3i: add getioaddr macro
+  [HEAD^] arm: sun3i: add dummy machine type
like image 282
David Given Avatar asked May 27 '12 11:05

David Given


People also ask

What is update upstream?

* "Updated upstream" means "these changes are in the working tree, compared to the state of the HEAD at the time you stashed your. changes". * "Stashed changes" means "the changes made in the working tree just. before stashing, compared to the state of the HEAD at the time you.


2 Answers

It could be, that upstream has rewritten history (rebase, amend, …) – they shouldn't do that, but you'll never know.

Since you say you don't have any local changes or commits, you should bring your repository back to a clean state by resetting your branch:

git reset --hard upstream/allwinner-v3.0-android-v2

(This will discard any local changes and make commits of current HEAD unreachable!)


The above assumes that you will (force) push the newly reset state of your branch to your remote repository, otherwise you will encounter the conflicts again when you try to pull from origin.

git push origin +allwinner-v3.0-android-v2

If you already had committed yourself locally, you'd have to rebase (or cherry-pick) your commits on top of the upstream branch, and then do a push to origin. That way you will re-write your local history the same way upstream did and apply your changes on top, i.e.:

git rebase --onto upstream/branch \
  last-original-upstream-commit-before-yours \
  your-branch
like image 120
knittl Avatar answered Sep 19 '22 06:09

knittl


The show-branch output means that upstream and HEAD have each added two commits since their common ancestor (assuming that's the full output). (See also: http://www.gitguys.com/topics/git-show-branch-to-see-branches-and-their-commits/) If you haven't committed anything yourself, that does mean that upstream pushed a rebase (or something else that changed the history). Since you haven't committed anything, knittl's answer is exactly what you want.

For what it's worth, I also love git log --oneline --graph --decorate --remotes --branches for this. You'll get an ASCII graph with all your branches and remotes, so you can visualize what happened where.

like image 21
ellotheth Avatar answered Sep 21 '22 06:09

ellotheth