2005-09-08 02:26:23 +02:00
|
|
|
git-cvsimport(1)
|
|
|
|
================
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-cvsimport - Salvage your data out of another SCM people love to hate
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git cvsimport' [-o <branch-for-HEAD>] [-h] [-v] [-d <CVSROOT>]
|
2007-04-06 23:52:39 +02:00
|
|
|
[-A <author-conv-file>] [-p <options-for-cvsps>] [-P <file>]
|
|
|
|
[-C <git_repository>] [-z <fuzz>] [-i] [-k] [-u] [-s <subst>]
|
|
|
|
[-a] [-m] [-M <regex>] [-S <regex>] [-L <commitlimit>]
|
2007-06-04 11:01:34 +02:00
|
|
|
[-r <remote>] [<CVS_module>]
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Imports a CVS repository into git. It will either create a new
|
|
|
|
repository, or incrementally import into an existing one.
|
|
|
|
|
2005-07-03 09:43:00 +02:00
|
|
|
Splitting the CVS log into patch sets is done by 'cvsps'.
|
2005-06-30 22:54:33 +02:00
|
|
|
At least version 2.1 is required.
|
|
|
|
|
2006-03-07 10:08:34 +01:00
|
|
|
You should *never* do any work of your own on the branches that are
|
2008-07-03 07:41:41 +02:00
|
|
|
created by 'git-cvsimport'. By default initial import will create and populate a
|
2006-03-07 10:08:34 +01:00
|
|
|
"master" branch from the CVS repository's main branch which you're free
|
2008-07-03 07:41:41 +02:00
|
|
|
to work with; after that, you need to 'git-merge' incremental imports, or
|
2007-06-04 11:01:34 +02:00
|
|
|
any CVS branches, yourself. It is advisable to specify a named remote via
|
|
|
|
-r to separate and protect the incoming branches.
|
|
|
|
|
2008-07-05 06:43:41 +02:00
|
|
|
If you intend to set up a shared public repository that all developers can
|
|
|
|
read/write, or if you want to use linkgit:git-cvsserver[1], then you
|
|
|
|
probably want to make a bare clone of the imported repository,
|
|
|
|
and use the clone as the shared repository.
|
|
|
|
See linkgit:gitcvs-migration[7].
|
|
|
|
|
2006-03-07 10:08:34 +01:00
|
|
|
|
2005-06-30 22:54:33 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2007-04-06 23:52:42 +02:00
|
|
|
-v::
|
|
|
|
Verbosity: let 'cvsimport' report what it is doing.
|
|
|
|
|
2005-06-30 22:54:33 +02:00
|
|
|
-d <CVSROOT>::
|
|
|
|
The root of the CVS archive. May be local (a simple path) or remote;
|
2007-06-07 09:04:01 +02:00
|
|
|
currently, only the :local:, :ext: and :pserver: access methods
|
2008-07-03 07:41:41 +02:00
|
|
|
are supported. If not given, 'git-cvsimport' will try to read it
|
2007-04-06 23:52:40 +02:00
|
|
|
from `CVS/Root`. If no such file exists, it checks for the
|
|
|
|
`CVSROOT` environment variable.
|
2005-06-30 22:54:33 +02:00
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
<CVS_module>::
|
|
|
|
The CVS module you want to import. Relative to <CVSROOT>.
|
2008-07-03 07:41:41 +02:00
|
|
|
If not given, 'git-cvsimport' tries to read it from
|
2007-04-06 23:52:42 +02:00
|
|
|
`CVS/Repository`.
|
|
|
|
|
2005-08-15 20:18:25 +02:00
|
|
|
-C <target-dir>::
|
2005-10-11 01:01:31 +02:00
|
|
|
The git repository to import to. If the directory doesn't
|
2005-08-15 20:18:25 +02:00
|
|
|
exist, it will be created. Default is the current directory.
|
|
|
|
|
2007-06-04 11:01:34 +02:00
|
|
|
-r <remote>::
|
|
|
|
The git remote to import this CVS repository into.
|
|
|
|
Moves all CVS branches into remotes/<remote>/<branch>
|
2008-07-03 07:41:41 +02:00
|
|
|
akin to the 'git-clone' "--use-separate-remote" option.
|
2007-06-04 11:01:34 +02:00
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
-o <branch-for-HEAD>::
|
2007-06-04 11:01:34 +02:00
|
|
|
When no remote is specified (via -r) the 'HEAD' branch
|
|
|
|
from CVS is imported to the 'origin' branch within the git
|
|
|
|
repository, as 'HEAD' already has a special meaning for git.
|
|
|
|
When a remote is specified the 'HEAD' branch is named
|
2008-07-03 07:41:41 +02:00
|
|
|
remotes/<remote>/master mirroring 'git-clone' behaviour.
|
2007-06-04 11:01:34 +02:00
|
|
|
Use this option if you want to import into a different
|
|
|
|
branch.
|
2007-04-06 23:52:42 +02:00
|
|
|
+
|
|
|
|
Use '-o master' for continuing an import that was initially done by
|
|
|
|
the old cvs2git tool.
|
|
|
|
|
2005-07-11 16:57:49 +02:00
|
|
|
-i::
|
|
|
|
Import-only: don't perform a checkout after importing. This option
|
2005-11-11 02:12:27 +01:00
|
|
|
ensures the working directory and index remain untouched and will
|
2005-07-11 16:57:49 +02:00
|
|
|
not create them if they do not exist.
|
|
|
|
|
2005-08-16 07:39:29 +02:00
|
|
|
-k::
|
2007-04-06 23:52:43 +02:00
|
|
|
Kill keywords: will extract files with '-kk' from the CVS archive
|
2005-08-16 07:39:29 +02:00
|
|
|
to avoid noisy changesets. Highly recommended, but off by default
|
2007-06-07 09:04:01 +02:00
|
|
|
to preserve compatibility with early imported trees.
|
2005-08-16 07:39:29 +02:00
|
|
|
|
2005-09-06 19:36:01 +02:00
|
|
|
-u::
|
|
|
|
Convert underscores in tag and branch names to dots.
|
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
-s <subst>::
|
|
|
|
Substitute the character "/" in branch names with <subst>
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
-p <options-for-cvsps>::
|
|
|
|
Additional options for cvsps.
|
2005-08-15 20:18:25 +02:00
|
|
|
The options '-u' and '-A' are implicit and should not be used here.
|
2005-10-03 19:16:30 +02:00
|
|
|
+
|
|
|
|
If you need to pass multiple options, separate them with a comma.
|
2005-06-30 22:54:33 +02:00
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
-z <fuzz>::
|
|
|
|
Pass the timestamp fuzz factor to cvsps, in seconds. If unset,
|
|
|
|
cvsps defaults to 300s.
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-P <cvsps-output-file>::
|
2005-11-02 01:48:47 +01:00
|
|
|
Instead of calling cvsps, read the provided cvsps output file. Useful
|
|
|
|
for debugging or when cvsps is being handled outside cvsimport.
|
|
|
|
|
2007-06-07 09:04:01 +02:00
|
|
|
-m::
|
2005-08-16 12:35:27 +02:00
|
|
|
Attempt to detect merges based on the commit message. This option
|
2008-02-28 11:18:23 +01:00
|
|
|
will enable default regexes that try to capture the source
|
2007-06-07 09:04:01 +02:00
|
|
|
branch name from the commit message.
|
2005-08-16 12:35:27 +02:00
|
|
|
|
|
|
|
-M <regex>::
|
|
|
|
Attempt to detect merges based on the commit message with a custom
|
2008-02-13 15:31:17 +01:00
|
|
|
regex. It can be used with '-m' to enable the default regexes
|
|
|
|
as well. You must escape forward slashes.
|
2008-02-28 11:18:23 +01:00
|
|
|
+
|
|
|
|
The regex must capture the source branch name in $1.
|
|
|
|
+
|
|
|
|
This option can be used several times to provide several detection regexes.
|
2005-08-16 12:35:27 +02:00
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
-S <regex>::
|
|
|
|
Skip paths matching the regex.
|
2005-08-17 11:19:20 +02:00
|
|
|
|
2007-01-08 07:43:39 +01:00
|
|
|
-a::
|
|
|
|
Import all commits, including recent ones. cvsimport by default
|
|
|
|
skips commits that have a timestamp less than 10 minutes ago.
|
2007-01-08 07:53:03 +01:00
|
|
|
|
|
|
|
-L <limit>::
|
|
|
|
Limit the number of commits imported. Workaround for cases where
|
|
|
|
cvsimport leaks memory.
|
|
|
|
|
2007-02-28 04:27:44 +01:00
|
|
|
-A <author-conv-file>::
|
|
|
|
CVS by default uses the Unix username when writing its
|
|
|
|
commit logs. Using this option and an author-conv-file
|
|
|
|
in this format
|
2006-03-20 11:41:18 +01:00
|
|
|
+
|
|
|
|
---------
|
2006-01-13 00:38:59 +01:00
|
|
|
exon=Andreas Ericsson <ae@op5.se>
|
|
|
|
spawn=Simon Pawn <spawn@frog-pond.org>
|
|
|
|
|
2006-03-20 11:41:18 +01:00
|
|
|
---------
|
|
|
|
+
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-cvsimport' will make it appear as those authors had
|
2006-03-20 11:41:18 +01:00
|
|
|
their GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL set properly
|
|
|
|
all along.
|
|
|
|
+
|
2007-04-06 23:52:40 +02:00
|
|
|
For convenience, this data is saved to `$GIT_DIR/cvs-authors`
|
2007-04-06 23:52:43 +02:00
|
|
|
each time the '-A' option is provided and read from that same
|
2008-07-03 07:41:41 +02:00
|
|
|
file each time 'git-cvsimport' is run.
|
2006-03-20 11:41:18 +01:00
|
|
|
+
|
|
|
|
It is not recommended to use this feature if you intend to
|
|
|
|
export changes back to CVS again later with
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-cvsexportcommit'.
|
2006-01-13 00:38:59 +01:00
|
|
|
|
2007-04-06 23:52:42 +02:00
|
|
|
-h::
|
|
|
|
Print a short usage message and exit.
|
|
|
|
|
2005-06-30 22:54:33 +02:00
|
|
|
OUTPUT
|
|
|
|
------
|
|
|
|
If '-v' is specified, the script reports what it is doing.
|
|
|
|
|
|
|
|
Otherwise, success is indicated the Unix way, i.e. by simply exiting with
|
|
|
|
a zero exit status.
|
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Matthias Urlichs <smurf@smurf.noris.de>, with help from
|
|
|
|
various participants of the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Matthias Urlichs <smurf@smurf.noris.de>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|