Re: git-svn 1.5.3 does not understand grafts?
From: Joakim Tjernlund <hidden>
Date: 2016-06-15 22:43:34
On Fri, 2007-09-07 at 18:52 +0200, Joakim Tjernlund wrote:
On Fri, 2007-09-07 at 18:41 +0200, Joakim Tjernlund wrote:quoted
svnadmin create /usr/local/src/TM/svn-tst/7720-svn/ svn mkdir file:///usr/local/src/TM/svn-tst/7720-svn/trunk -m "Add trunk dir" svn mkdir file:///usr/local/src/TM/svn-tst/7720-svn/trunk/swp -m "Add swp dir" In my git repo I do git-svn init file:///usr/local/src/TM/svn-tst/7720-svn/trunk/swp git-svn fetch git branch svn remotes/git-svn #make remotes/git-svn parent to the initial commit in my git tree graftid=`git-show-ref -s svn` echo da783cce390ce013b19f1d308ea6813269c6a6b5 $graftid > .git/info/grafts #da783... is the initial commit in my git tree. git-svn dcommit fails with: Committing to file:///usr/local/src/TM/svn-tst/7720-svn/trunk/swp ... Commit da783cce390ce013b19f1d308ea6813269c6a6b5 has no parent commit, and therefore nothing to diff against. You should be working from a repository originally created by git-svn JockeUsing filter-branch helps, but git-svn isn't too happy: git-svn init file:///usr/local/src/TM/svn-tst/7720-svn/trunk/swp git-svn fetch git branch svn remotes/git-svn #make remotes/git-svn parent to the initial commit in my git tree graftid=`git-show-ref -s svn` echo da783cce390ce013b19f1d308ea6813269c6a6b5 $graftid > .git/info/grafts #da783... is the initial commit in my git tree. git filter-branch $graftid..HEAD git-svn dcommit Now I get alot of complaints, but it commits to svn. It takes forever though: r3 = 55a489bd4f66dd1f641a4676359d7b8911dc7d83 (git-svn) W: HEAD and refs/remotes/git-svn differ, using rebase: :100644 100644 f85ae11af7715a224015582724cb2bab87ec914a
[SNIP]
Just wanted to add that 1.5.2.2 works with grafts and
that I suspect sub read_commit_parents in git-svn, but as I don't
do perl I am stuck.
Jocke
Oh, Eric W. CC:ed as well this time