1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.38.4.
.TH HG-FAST-EXPORT "1" "February 2011" "hg-fast-export" "User Commands"
.SH NAME
hg-fast-export \- import hg repository into git
.SH SYNOPSIS
.B hg-fast-export
[\fI--quiet\fR] [\fI-r <repo>\fR] [\fI--force\fR] [\fI-m <max>\fR] [\fI-s\fR] [\fI-A <file>\fR] [\fI-M <name>\fR] [\fI-o <name>\fR]
.SH DESCRIPTION
Import hg repository <repo> up to either tip or <max>
If <repo> is omitted, use last hg repository as obtained from state file,
GIT_DIR/hg2git\-state by default.
.PP
Note: The argument order matters.
.SH OPTIONS
.TP
\fB\-m\fR
Maximum revision to import
.HP
\fB\-\-quiet\fR Passed to git\-fast\-import(1)
.TP
\fB\-s\fR
Enable parsing Signed\-off\-by lines
.TP
\fB\-A\fR
Read author map from file
(Same as in git\-svnimport(1) and git\-cvsimport(1))
.TP
\fB\-r\fR
Mercurial repository to import
.TP
\fB\-M\fR
Set the default branch name (default to 'master')
.TP
\fB\-o\fR
Use <name> as branch namespace to track upstream (eg 'origin')
.TP
\fB\-\-force\fR
Ignore validation errors when converting, and pass \-\-force
to git\-fast\-import(1)
|