* Resolving a merge conflict with git-svn
@ 2009-11-14 0:30 Jens Kubieziel
2009-11-14 0:58 ` Daniele Segato
0 siblings, 1 reply; 2+ messages in thread
From: Jens Kubieziel @ 2009-11-14 0:30 UTC (permalink / raw)
To: git
Hi,
I recently came across a big conflict. Someone used Subversion and
made a complete wrong commit. I did a 'git svn rebase' at some point
and ran into the conflict. My goal at this point was to remove the
wrong commit, but I found no way how to do it (git-revert needs a
clean tree; git stash brought [fatal: git-write-tree: error building
trees,Cannot save the current state]). What way would suggest to
remove that wrong made commit and continue with the rebase?
Thanks for any hints.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Resolving a merge conflict with git-svn
2009-11-14 0:30 Resolving a merge conflict with git-svn Jens Kubieziel
@ 2009-11-14 0:58 ` Daniele Segato
0 siblings, 0 replies; 2+ messages in thread
From: Daniele Segato @ 2009-11-14 0:58 UTC (permalink / raw)
To: Jens Kubieziel; +Cc: git
Il giorno sab, 14/11/2009 alle 01.30 +0100, Jens Kubieziel ha scritto:
> Hi,
>
> I recently came across a big conflict. Someone used Subversion and
> made a complete wrong commit. I did a 'git svn rebase' at some point
> and ran into the conflict. My goal at this point was to remove the
> wrong commit, but I found no way how to do it (git-revert needs a
> clean tree; git stash brought [fatal: git-write-tree: error building
> trees,Cannot save the current state]). What way would suggest to
> remove that wrong made commit and continue with the rebase?
I don't know if this could help but I tell you what I would do.
I would abort the conflicting rebase
"backing up" my branch by:
git checkout mybranch
git checkout -b mybranchBackup
then I would do a git reset --hard <last-committed-svn-commit>
at this point a:
git svn rebase
shouldn't give conflict since it should be a fast forward.
Then you should have two branch:
mybranch: which is SVN-up-to-date but has no one of your modification
mybranchBackup: which has an old SVN before the wrong commit but with
all your modifications...
at this point you can use git revert to revert the wrong commit into
your "mybranch".
and then you can cherry-pick all your modification from mybranchBackup
may be you could also been able to rebase upon it....
but I would do an interactive rebase to "see" what's going to do and
being able to control it
like:
git checkout mybranchBackup
git rebase -i mybranch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-14 0:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-14 0:30 Resolving a merge conflict with git-svn Jens Kubieziel
2009-11-14 0:58 ` Daniele Segato
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).