Re: git fast-export/fast-import *facepalm*
From: Chris Packham <hidden>
Date: 2016-06-15 22:48:52
On Thu, May 27, 2010 at 2:03 PM, Shawn O. Pearce [off-list ref] wrote:
Chris Packham [off-list ref] wrote:quoted
What I've ended up with is a repository with a detached set of changes i.e o -o l - l - l - l - l - l o - master \ / o - o - o - o - o - o o = our commits l = linux commits Because the code is common textually I think what I really should have done is (cd linux-2.6.32.y; git format-patch v2.6.32.12..v2.6.32.14) | git am Which I'll give a try in a minute. In the meantime is there anyway for me to safely remove the upstream linux commits without loosing our commits in the process?If I read your diagram right, the l-l-l chain isn't connected at all to your graph, so it should just get removed with `git gc`.
Well it _looks_ detached in gitk I can't see any merge commits. I've tried git gc but no joy. Maybe I need to tell it to be a bit more thorough.
But if it is connected due to a merge with your master, lookup the merge and find its parent which is your local stuff and `git reset --hard` to that commit. -- Shawn.