cvsimport: sync usage lines with existing options
[git/jnareb-git.git] / Documentation / git-cvsimport.txt
blob8374d90471fcf56aefeb361b41d486a4dffff998
1 git-cvsimport(1)
2 ================
4 NAME
5 ----
6 git-cvsimport - Salvage your data out of another SCM people love to hate
9 SYNOPSIS
10 --------
11 [verse]
12 'git-cvsimport' [-o <branch-for-HEAD>] [-h] [-v] [-d <CVSROOT>]
13               [-A <author-conv-file>] [-p <options-for-cvsps>] [-P <file>]
14               [-C <git_repository>] [-z <fuzz>] [-i] [-k] [-u] [-s <subst>]
15               [-a] [-m] [-M <regex>] [-S <regex>] [-L <commitlimit>]
16               [<CVS_module>]
19 DESCRIPTION
20 -----------
21 Imports a CVS repository into git. It will either create a new
22 repository, or incrementally import into an existing one.
24 Splitting the CVS log into patch sets is done by 'cvsps'.
25 At least version 2.1 is required.
27 You should *never* do any work of your own on the branches that are
28 created by git-cvsimport. The initial import will create and populate a
29 "master" branch from the CVS repository's main branch which you're free
30 to work with; after that, you need to 'git merge' incremental imports, or
31 any CVS branches, yourself.
33 OPTIONS
34 -------
35 -d <CVSROOT>::
36         The root of the CVS archive. May be local (a simple path) or remote;
37         currently, only the :local:, :ext: and :pserver: access methods 
38         are supported.
40 -C <target-dir>::
41         The git repository to import to.  If the directory doesn't
42         exist, it will be created.  Default is the current directory.
44 -i::
45         Import-only: don't perform a checkout after importing.  This option
46         ensures the working directory and index remain untouched and will
47         not create them if they do not exist.
49 -k::
50         Kill keywords: will extract files with -kk from the CVS archive
51         to avoid noisy changesets. Highly recommended, but off by default
52         to preserve compatibility with early imported trees. 
54 -u::
55         Convert underscores in tag and branch names to dots.
57 -o <branch-for-HEAD>::
58         The 'HEAD' branch from CVS is imported to the 'origin' branch within
59         the git repository, as 'HEAD' already has a special meaning for git.
60         Use this option if you want to import into a different branch.
62 Use '-o master' for continuing an import that was initially done by
63 the old cvs2git tool.
65 -p <options-for-cvsps>::
66         Additional options for cvsps.
67         The options '-u' and '-A' are implicit and should not be used here.
69 If you need to pass multiple options, separate them with a comma.
71 -P <cvsps-output-file>::
72         Instead of calling cvsps, read the provided cvsps output file. Useful
73         for debugging or when cvsps is being handled outside cvsimport.
75 -m::    
76         Attempt to detect merges based on the commit message. This option
77         will enable default regexes that try to capture the name source 
78         branch name from the commit message. 
80 -M <regex>::
81         Attempt to detect merges based on the commit message with a custom
82         regex. It can be used with -m to also see the default regexes. 
83         You must escape forward slashes. 
85 -v::
86         Verbosity: let 'cvsimport' report what it is doing.
88 <CVS_module>::
89         The CVS module you want to import. Relative to <CVSROOT>.
91 -h::
92         Print a short usage message and exit.
94 -z <fuzz>::
95         Pass the timestamp fuzz factor to cvsps, in seconds. If unset,
96         cvsps defaults to 300s.
98 -s <subst>::
99         Substitute the character "/" in branch names with <subst>
101 -a::
102         Import all commits, including recent ones. cvsimport by default
103         skips commits that have a timestamp less than 10 minutes ago.
105 -S <regex>::
106         Skip paths matching the regex.
108 -L <limit>::
109         Limit the number of commits imported. Workaround for cases where
110         cvsimport leaks memory.
112 -A <author-conv-file>::
113         CVS by default uses the Unix username when writing its
114         commit logs. Using this option and an author-conv-file
115         in this format
117 ---------
118         exon=Andreas Ericsson <ae@op5.se>
119         spawn=Simon Pawn <spawn@frog-pond.org>
121 ---------
123 git-cvsimport will make it appear as those authors had
124 their GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL set properly
125 all along.
127 For convenience, this data is saved to $GIT_DIR/cvs-authors
128 each time the -A option is provided and read from that same
129 file each time git-cvsimport is run.
131 It is not recommended to use this feature if you intend to
132 export changes back to CVS again later with
133 gitlink:git-cvsexportcommit[1].
135 OUTPUT
136 ------
137 If '-v' is specified, the script reports what it is doing.
139 Otherwise, success is indicated the Unix way, i.e. by simply exiting with
140 a zero exit status.
143 Author
144 ------
145 Written by Matthias Urlichs <smurf@smurf.noris.de>, with help from
146 various participants of the git-list <git@vger.kernel.org>.
148 Documentation
149 --------------
150 Documentation by Matthias Urlichs <smurf@smurf.noris.de>.
154 Part of the gitlink:git[7] suite