checkout: make the message about the need for a new branch a bit clearer
[git/gitweb.git] / Documentation / git-svnimport.txt
blob2c7c7dad54b5d2c773194b494d98ea521bc54d2f
1 git-svnimport(1)
2 ================
3 v0.1, July 2005
5 NAME
6 ----
7 git-svnimport - Import a SVN repository into git
10 SYNOPSIS
11 --------
12 [verse]
13 'git-svnimport' [ -o <branch-for-HEAD> ] [ -h ] [ -v ] [ -d | -D ]
14                 [ -C <GIT_repository> ] [ -i ] [ -u ] [-l limit_rev]
15                 [ -b branch_subdir ] [ -T trunk_subdir ] [ -t tag_subdir ]
16                 [ -s start_chg ] [ -m ] [ -r ] [ -M regex ]
17                 [ -I <ignorefile_name> ] [ -A <author_file> ]
18                 [ -P <path_from_trunk> ]
19                 <SVN_repository_URL> [ <path> ]
22 DESCRIPTION
23 -----------
24 Imports a SVN repository into git. It will either create a new
25 repository, or incrementally import into an existing one.
27 SVN access is done by the SVN::Perl module.
29 git-svnimport assumes that SVN repositories are organized into one
30 "trunk" directory where the main development happens, "branch/FOO"
31 directories for branches, and "/tags/FOO" directories for tags.
32 Other subdirectories are ignored.
34 git-svnimport creates a file ".git/svn2git", which is required for
35 incremental SVN imports.
37 OPTIONS
38 -------
39 -C <target-dir>::
40         The GIT repository to import to.  If the directory doesn't
41         exist, it will be created.  Default is the current directory.
43 -s <start_rev>::
44         Start importing at this SVN change number. The  default is 1.
46 When importing incrementally, you might need to edit the .git/svn2git file.
48 -i::
49         Import-only: don't perform a checkout after importing.  This option
50         ensures the working directory and index remain untouched and will
51         not create them if they do not exist.
53 -T <trunk_subdir>::
54         Name the SVN trunk. Default "trunk".
56 -t <tag_subdir>::
57         Name the SVN subdirectory for tags. Default "tags".
59 -b <branch_subdir>::
60         Name the SVN subdirectory for branches. Default "branches".
62 -o <branch-for-HEAD>::
63         The 'trunk' branch from SVN is imported to the 'origin' branch within
64         the git repository. Use this option if you want to import into a
65         different branch.
67 -r::
68         Prepend 'rX: ' to commit messages, where X is the imported
69         subversion revision.
71 -I <ignorefile_name>::
72         Import the svn:ignore directory property to files with this
73         name in each directory. (The Subversion and GIT ignore
74         syntaxes are similar enough that using the Subversion patterns
75         directly with "-I .gitignore" will almost always just work.)
77 -A <author_file>::
78         Read a file with lines on the form
80 ------
81         username = User's Full Name <email@addr.es>
83 ------
85 and use "User's Full Name <email@addr.es>" as the GIT
86 author and committer for Subversion commits made by
87 "username". If encountering a commit made by a user not in the
88 list, abort.
90 For convenience, this data is saved to $GIT_DIR/svn-authors
91 each time the -A option is provided, and read from that same
92 file each time git-svnimport is run with an existing GIT
93 repository without -A.
95 -m::
96         Attempt to detect merges based on the commit message. This option
97         will enable default regexes that try to capture the name source
98         branch name from the commit message.
100 -M <regex>::
101         Attempt to detect merges based on the commit message with a custom
102         regex. It can be used with -m to also see the default regexes.
103         You must escape forward slashes.
105 -l <max_rev>::
106         Specify a maximum revision number to pull.
108 Formerly, this option controlled how many revisions to pull,
109 due to SVN memory leaks. (These have been worked around.)
111 -P <path_from_trunk>::
112         Partial import of the SVN tree.
114 By default, the whole tree on the SVN trunk (/trunk) is imported.
115 '-P my/proj' will import starting only from '/trunk/my/proj'.
116 This option is useful when you want to import one project from a
117 svn repo which hosts multiple projects under the same trunk.
119 -v::
120         Verbosity: let 'svnimport' report what it is doing.
122 -d::
123         Use direct HTTP requests if possible. The "<path>" argument is used
124         only for retrieving the SVN logs; the path to the contents is
125         included in the SVN log.
127 -D::
128         Use direct HTTP requests if possible. The "<path>" argument is used
129         for retrieving the logs, as well as for the contents.
131 There's no safe way to automatically find out which of these options to
132 use, so you need to try both. Usually, the one that's wrong will die
133 with a 40x error pretty quickly.
135 <SVN_repository_URL>::
136         The URL of the SVN module you want to import. For local
137         repositories, use "file:///absolute/path".
139 If you're using the "-d" or "-D" option, this is the URL of the SVN
140 repository itself; it usually ends in "/svn".
142 <path>::
143         The path to the module you want to check out.
145 -h::
146         Print a short usage message and exit.
148 OUTPUT
149 ------
150 If '-v' is specified, the script reports what it is doing.
152 Otherwise, success is indicated the Unix way, i.e. by simply exiting with
153 a zero exit status.
155 Author
156 ------
157 Written by Matthias Urlichs <smurf@smurf.noris.de>, with help from
158 various participants of the git-list <git@vger.kernel.org>.
160 Based on a cvs2git script by the same author.
162 Documentation
163 --------------
164 Documentation by Matthias Urlichs <smurf@smurf.noris.de>.
168 Part of the gitlink:git[7] suite