For each imported svn commit write "rN" note in a private namespace. These can be viewed with somewhat ugly $ git log --show-notes=refs/svn-alpha/<reponame>/SVNR But also these notes can be used to import svn history incrementally. Add a simple test for these notes. Signed-off-by: Dmitry Ivankov <divanorama@xxxxxxxxx> --- contrib/svn-fe/git-remote-svn-alpha | 9 ++++++--- contrib/svn-fe/t/t9010-remote-svn-alpha.sh | 11 +++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/contrib/svn-fe/git-remote-svn-alpha b/contrib/svn-fe/git-remote-svn-alpha index b410302..c2af393 100755 --- a/contrib/svn-fe/git-remote-svn-alpha +++ b/contrib/svn-fe/git-remote-svn-alpha @@ -58,8 +58,8 @@ SVNDUMP=${SVNDUMP:-`try_svnadmin`} test -n "$SVNDUMP" || die "neither svnrdump nor svnadmin & svnlook was found" do_import () { - revs=$1 url=$2 dst=$3 - (eval "$SVNDUMP \"$url\" -r\"$revs\"" | svn-fe --ref="$dst" --no-progress) 3<&0 || die "FAILURE" + revs=$1 url=$2 dst=$3 notes=$4 + (eval "$SVNDUMP \"$url\" -r\"$revs\"" | svn-fe --ref="$dst" --notes_ref="$notes" --no-progress) 3<&0 || die "FAILURE" exec 1>&- } @@ -70,6 +70,8 @@ url=$2 need_import="" remote_ref="refs/heads/master" private_ref="refs/svn-alpha/$repo/SVNHEAD" +remote_notes="refs/notes/svnr" +private_notes="refs/svn-alpha/$repo/SVNR" while read -r cmd args do @@ -78,6 +80,7 @@ do echo import echo "refspec HEAD:$private_ref" echo "refspec $remote_ref:$private_ref" + echo "refspec $remote_notes:$private_notes" echo ;; list) @@ -92,7 +95,7 @@ do ;; '') test "$need_import" = "yes" || exit 0 - do_import 0:HEAD "$url" "$private_ref" + do_import 0:HEAD "$url" "$private_ref" "$private_notes" need_import="" ;; *) diff --git a/contrib/svn-fe/t/t9010-remote-svn-alpha.sh b/contrib/svn-fe/t/t9010-remote-svn-alpha.sh index b0f41cb..5102428 100755 --- a/contrib/svn-fe/t/t9010-remote-svn-alpha.sh +++ b/contrib/svn-fe/t/t9010-remote-svn-alpha.sh @@ -265,4 +265,15 @@ test_expect_success TINY_SVN 'fetch TINY does not write to refs/heads/master' ' test_must_fail git show-ref --verify refs/heads/master ' +test_expect_success SMALL_SVN 'fetch SMALL writes revnum notes' ' + reinit_git && + url=$(svnurl small.svn) && + git remote add svn "$url" && + git fetch svn && + git log --show-notes=refs/svn-alpha/svn/SVNR --format=%N -1 refs/remotes/svn/master^ >actual.note && + echo r9 >expect.note && + echo >>expect.note && + test_cmp expect.note actual.note +' + test_done -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html