2005-09-08 02:26:23 +02:00
|
|
|
git-archimport(1)
|
|
|
|
=================
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-10-11 01:01:31 +02:00
|
|
|
git-archimport - Import an Arch repository into git
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git archimport' [-h] [-v] [-o] [-a] [-f] [-T] [-D depth] [-t tempdir]
|
2007-03-07 10:43:41 +01:00
|
|
|
<archive/branch>[:<git-branch>] ...
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-09-11 11:26:05 +02:00
|
|
|
Imports a project from one or more Arch repositories. It will follow branches
|
|
|
|
and repositories within the namespaces defined by the <archive/branch>
|
2005-12-29 10:20:06 +01:00
|
|
|
parameters supplied. If it cannot find the remote branch a merge comes from
|
2007-06-07 09:04:01 +02:00
|
|
|
it will just import it as a regular commit. If it can find it, it will mark it
|
|
|
|
as a merge whenever possible (see discussion below).
|
2005-09-07 23:08:38 +02:00
|
|
|
|
2007-06-07 09:04:01 +02:00
|
|
|
The script expects you to provide the key roots where it can start the import
|
|
|
|
from an 'initial import' or 'tag' type of Arch commit. It will follow and
|
|
|
|
import new branches within the provided roots.
|
2005-09-07 23:08:38 +02:00
|
|
|
|
2007-06-07 09:04:01 +02:00
|
|
|
It expects to be dealing with one project only. If it sees
|
|
|
|
branches that have different roots, it will refuse to run. In that case,
|
|
|
|
edit your <archive/branch> parameters to define clearly the scope of the
|
|
|
|
import.
|
2005-09-11 11:26:05 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
'git archimport' uses `tla` extensively in the background to access the
|
2005-10-06 00:08:26 +02:00
|
|
|
Arch repository.
|
2005-09-11 11:26:05 +02:00
|
|
|
Make sure you have a recent version of `tla` available in the path. `tla` must
|
2010-01-10 00:33:00 +01:00
|
|
|
know about the repositories you pass to 'git archimport'.
|
2005-09-11 11:26:05 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
For the initial import, 'git archimport' expects to find itself in an empty
|
2007-06-07 09:04:01 +02:00
|
|
|
directory. To follow the development of a project that uses Arch, rerun
|
2010-01-10 00:33:00 +01:00
|
|
|
'git archimport' with the same parameters as the initial import to perform
|
2005-10-06 00:08:26 +02:00
|
|
|
incremental imports.
|
2005-09-11 11:26:05 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
While 'git archimport' will try to create sensible branch names for the
|
2007-03-07 10:43:41 +01:00
|
|
|
archives that it imports, it is also possible to specify git branch names
|
|
|
|
manually. To do so, write a git branch name after each <archive/branch>
|
|
|
|
parameter, separated by a colon. This way, you can shorten the Arch
|
|
|
|
branch names and convert Arch jargon to git jargon, for example mapping a
|
|
|
|
"PROJECT--devo--VERSION" branch to "master".
|
|
|
|
|
|
|
|
Associating multiple Arch branches to one git branch is possible; the
|
|
|
|
result will make the most sense only if no commits are made to the first
|
|
|
|
branch, after the second branch is created. Still, this is useful to
|
|
|
|
convert Arch repositories that had been rotated periodically.
|
|
|
|
|
|
|
|
|
2005-09-11 11:26:05 +02:00
|
|
|
MERGES
|
|
|
|
------
|
2007-06-07 09:04:01 +02:00
|
|
|
Patch merge data from Arch is used to mark merges in git as well. git
|
2005-09-11 11:26:05 +02:00
|
|
|
does not care much about tracking patches, and only considers a merge when a
|
|
|
|
branch incorporates all the commits since the point they forked. The end result
|
2007-06-07 09:04:01 +02:00
|
|
|
is that git will have a good idea of how far branches have diverged. So the
|
2005-09-11 11:26:05 +02:00
|
|
|
import process does lose some patch-trading metadata.
|
|
|
|
|
2007-06-07 09:04:01 +02:00
|
|
|
Fortunately, when you try and merge branches imported from Arch,
|
|
|
|
git will find a good merge base, and it has a good chance of identifying
|
|
|
|
patches that have been traded out-of-sequence between the branches.
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2005-09-11 11:26:05 +02:00
|
|
|
-h::
|
|
|
|
Display usage.
|
|
|
|
|
|
|
|
-v::
|
2007-06-07 09:04:01 +02:00
|
|
|
Verbose output.
|
2005-09-11 11:26:05 +02:00
|
|
|
|
|
|
|
-T::
|
2007-06-07 09:04:01 +02:00
|
|
|
Many tags. Will create a tag for every commit, reflecting the commit
|
2005-09-11 11:26:05 +02:00
|
|
|
name in the Arch repository.
|
|
|
|
|
2005-12-19 02:23:50 +01:00
|
|
|
-f::
|
|
|
|
Use the fast patchset import strategy. This can be significantly
|
|
|
|
faster for large trees, but cannot handle directory renames or
|
|
|
|
permissions changes. The default strategy is slow and safe.
|
|
|
|
|
|
|
|
-o::
|
|
|
|
Use this for compatibility with old-style branch names used by
|
2010-01-10 00:33:00 +01:00
|
|
|
earlier versions of 'git archimport'. Old-style branch names
|
2005-12-19 02:23:50 +01:00
|
|
|
were category--branch, whereas new-style branch names are
|
2007-03-07 10:43:41 +01:00
|
|
|
archive,category--branch--version. In both cases, names given
|
|
|
|
on the command-line will override the automatically-generated
|
|
|
|
ones.
|
2005-12-19 02:23:50 +01:00
|
|
|
|
|
|
|
-D <depth>::
|
|
|
|
Follow merge ancestry and attempt to import trees that have been
|
|
|
|
merged from. Specify a depth greater than 1 if patch logs have been
|
|
|
|
pruned.
|
|
|
|
|
|
|
|
-a::
|
|
|
|
Attempt to auto-register archives at http://mirrors.sourcecontrol.net
|
|
|
|
This is particularly useful with the -D option.
|
|
|
|
|
2005-09-11 11:26:05 +02:00
|
|
|
-t <tmpdir>::
|
|
|
|
Override the default tempdir.
|
|
|
|
|
|
|
|
|
|
|
|
<archive/branch>::
|
2007-06-07 09:04:01 +02:00
|
|
|
Archive/branch identifier in a format that `tla log` understands.
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Martin Langhoff <martin@catalyst.net.nz>.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
2005-09-11 11:26:05 +02:00
|
|
|
Documentation by Junio C Hamano, Martin Langhoff and the git-list <git@vger.kernel.org>.
|
2005-09-07 23:08:38 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|