diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-08-09 17:58:36 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-14 19:35:38 -0700 |
commit | d0fc40c741176a9f4092eaeb1a3d18aca60ac5df (patch) | |
tree | fc264ea7e5ce01f779dcfc26a42be18c761cbc31 /contrib/svn-fe | |
parent | 712308f29ab05f821365edec9550b45d8b616c2a (diff) | |
download | git-d0fc40c741176a9f4092eaeb1a3d18aca60ac5df.tar.gz git-d0fc40c741176a9f4092eaeb1a3d18aca60ac5df.tar.xz |
svn-fe manual: Clarify warning about deltas in dump files
Those in the know would notice that dump file format version 2
means "svnadmin dump --no-deltas", but for the rest of us, an
explicit reminder is useful.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/svn-fe')
-rw-r--r-- | contrib/svn-fe/svn-fe.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/svn-fe/svn-fe.txt b/contrib/svn-fe/svn-fe.txt index fb0ee562e..35f84bd9e 100644 --- a/contrib/svn-fe/svn-fe.txt +++ b/contrib/svn-fe/svn-fe.txt @@ -12,7 +12,7 @@ svnadmin dump --incremental REPO | svn-fe [url] | git fast-import DESCRIPTION ----------- -Converts a Subversion dumpfile (version: 2) into input suitable for +Converts a Subversion dumpfile into input suitable for git-fast-import(1) and similar importers. REPO is a path to a Subversion repository mirrored on the local disk. Remote Subversion repositories can be mirrored on local disk using the `svnsync` @@ -25,6 +25,9 @@ Subversion's repository dump format is documented in full in Files in this format can be generated using the 'svnadmin dump' or 'svk admin dump' command. +Dumps produced with 'svnadmin dump --deltas' (dumpfile format v3) +are not supported. + OUTPUT FORMAT ------------- The fast-import format is documented by the git-fast-import(1) |