Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean <seanlkml@sympatico.ca>2006-06-16 01:26:21 +0400
committerJunio C Hamano <junkio@cox.net>2006-06-17 09:33:46 +0400
commitada7781dc3602e6efc052e5e0da37a63caae0489 (patch)
tree594c9a2711a409fdd04099508fc6d223f95f5cb0 /Documentation/git-p4import.txt
parent5b139a66fcac6ebe6a1ca483ced8cc70f65d3a78 (diff)
Add a "--notags" option for git-p4import.
P4import currently creates a git tag for every commit it imports. When importing from a large repository too many tags can be created for git to manage, so this provides an option to shut that feature off if necessary. Signed-off-by: Sean Estabrooks <seanlkml@sympatico.ca>
Diffstat (limited to 'Documentation/git-p4import.txt')
-rw-r--r--Documentation/git-p4import.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-p4import.txt b/Documentation/git-p4import.txt
index c198ff2502..0858e5efbe 100644
--- a/Documentation/git-p4import.txt
+++ b/Documentation/git-p4import.txt
@@ -8,7 +8,7 @@ git-p4import - Import a Perforce repository into git
SYNOPSIS
--------
-`git-p4import` [-q|-v] [--authors <file>] [-t <timezone>] <//p4repo/path> <branch>
+`git-p4import` [-q|-v] [--notags] [--authors <file>] [-t <timezone>] <//p4repo/path> <branch>
`git-p4import` --stitch <//p4repo/path>
@@ -43,6 +43,9 @@ OPTIONS
Specify an authors file containing a mapping of Perforce user
ids to full names and email addresses (see Notes below).
+\--notags::
+ Do not create a tag for each imported commit.
+
\--stitch::
Import the contents of the given perforce branch into the
currently checked out git branch.