2005-09-08 02:26:23 +02:00
|
|
|
git-cvsimport(1)
|
|
|
|
================
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-cvsimport - Import a CVS repository into git
|
2005-06-30 22:54:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-cvsimport' [ -o <branch-for-HEAD> ] [ -h ] [ -v ]
|
2005-06-30 22:54:33 +02:00
|
|
|
[ -d <CVSROOT> ] [ -p <options-for-cvsps> ]
|
2005-10-11 01:01:31 +02:00
|
|
|
[ -C <git_repository> ] [ -i ] [ -k ]
|
2005-08-16 12:35:27 +02:00
|
|
|
[ -s <subst> ] [ -m ] [ -M regex ] [ <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.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-d <CVSROOT>::
|
|
|
|
The root of the CVS archive. May be local (a simple path) or remote;
|
2005-07-03 13:02:06 +02:00
|
|
|
currently, only the :local:, :ext: and :pserver: access methods
|
|
|
|
are supported.
|
2005-06-30 22:54:33 +02:00
|
|
|
|
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.
|
|
|
|
|
2005-07-11 16:57:49 +02:00
|
|
|
-i::
|
|
|
|
Import-only: don't perform a checkout after importing. This option
|
|
|
|
ensures the working directory and cache remain untouched and will
|
|
|
|
not create them if they do not exist.
|
|
|
|
|
2005-08-16 07:39:29 +02:00
|
|
|
-k::
|
|
|
|
Kill keywords: will extract files with -kk from the CVS archive
|
|
|
|
to avoid noisy changesets. Highly recommended, but off by default
|
|
|
|
to preserve compatibility with early imported trees.
|
|
|
|
|
2005-09-06 19:36:01 +02:00
|
|
|
-u::
|
|
|
|
Convert underscores in tag and branch names to dots.
|
|
|
|
|
2005-06-30 22:54:33 +02:00
|
|
|
-o <branch-for-HEAD>::
|
|
|
|
The 'HEAD' branch from CVS is imported to the 'origin' branch within
|
|
|
|
the git repository, as 'HEAD' already has a special meaning for git.
|
|
|
|
Use this option if you want to import into a different branch.
|
2005-10-03 19:16:30 +02:00
|
|
|
+
|
|
|
|
Use '-o master' for continuing an import that was initially done by
|
|
|
|
the old cvs2git tool.
|
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
|
|
|
|
2005-08-16 12:35:27 +02:00
|
|
|
-m::
|
|
|
|
Attempt to detect merges based on the commit message. This option
|
|
|
|
will enable default regexes that try to capture the name source
|
|
|
|
branch name from the commit message.
|
|
|
|
|
|
|
|
-M <regex>::
|
|
|
|
Attempt to detect merges based on the commit message with a custom
|
|
|
|
regex. It can be used with -m to also see the default regexes.
|
|
|
|
You must escape forward slashes.
|
|
|
|
|
2005-06-30 22:54:33 +02:00
|
|
|
-v::
|
|
|
|
Verbosity: let 'cvsimport' report what it is doing.
|
|
|
|
|
|
|
|
<CVS_module>::
|
|
|
|
The CVS module you want to import. Relative to <CVSROOT>.
|
|
|
|
|
|
|
|
-h::
|
|
|
|
Print a short usage message and exit.
|
|
|
|
|
2005-08-15 20:18:25 +02:00
|
|
|
-z <fuzz>::
|
|
|
|
Pass the timestamp fuzz factor to cvsps.
|
|
|
|
|
2005-08-17 11:19:20 +02:00
|
|
|
-s <subst>::
|
|
|
|
Substitute the character "/" in branch names with <subst>
|
|
|
|
|
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
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-06-30 22:54:33 +02:00
|
|
|
|