diff options
author | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-10 15:14:21 +0200 |
---|---|---|
committer | Matthias Urlichs <smurf@smurf.noris.de> | 2005-10-10 15:14:21 +0200 |
commit | 7ee74a99b2b710b5f5adc22db2fe0aca8a74c809 (patch) | |
tree | 311e74e0ef0fb25668fcc7bf9402600962fb57f3 /Documentation/git-svnimport.txt | |
parent | bf267d99e88410a31452d4d1ccae0b9b4432b11e (diff) | |
download | git-7ee74a99b2b710b5f5adc22db2fe0aca8a74c809.tar.gz git-7ee74a99b2b710b5f5adc22db2fe0aca8a74c809.tar.xz |
svn import: skip initial revisions
Add a flag to skip initial revisions: some SVN repositories have
initial setup cruft in their logs which we might want to ignore.
Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
Diffstat (limited to 'Documentation/git-svnimport.txt')
-rw-r--r-- | Documentation/git-svnimport.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-svnimport.txt b/Documentation/git-svnimport.txt index be03a65f8..a144c6c31 100644 --- a/Documentation/git-svnimport.txt +++ b/Documentation/git-svnimport.txt @@ -12,7 +12,7 @@ SYNOPSIS 'git-svnimport' [ -o <branch-for-HEAD> ] [ -h ] [ -v ] [ -C <GIT_repository> ] [ -i ] [ -u ] [ -b branch_subdir ] [ -t trunk_subdir ] [ -T tag_subdir ] - [ -m ] [ -M regex ] [ <SVN_repository_URL> ] + [ -s start_chg ] [ -m ] [ -M regex ] [ <SVN_repository_URL> ] DESCRIPTION @@ -36,6 +36,11 @@ OPTIONS The GIT repository to import to. If the directory doesn't exist, it will be created. Default is the current directory. +-s <start_rev>:: + Start importing at this SVN change number. The default is 1. ++ +When importing incementally, you might need to edit the .git/svn2git file. + -i:: Import-only: don't perform a checkout after importing. This option ensures the working directory and cache remain untouched and will |