@@ -42,13 +42,13 @@ OPTIONS
42
42
--quiet::
43
43
Disable all non-fatal output, making fast-import silent when it
44
44
is successful. This option disables the output shown by
45
- \ --stats.
45
+ --stats.
46
46
47
47
--stats::
48
48
Display some basic statistics about the objects fast-import has
49
49
created, the packfiles they were stored into, and the
50
50
memory used by fast-import during this run. Showing this output
51
- is currently the default, but can be disabled with \ --quiet.
51
+ is currently the default, but can be disabled with --quiet.
52
52
53
53
Options for Frontends
54
54
~~~~~~~~~~~~~~~~~~~~~
@@ -81,12 +81,12 @@ Locations of Marks Files
81
81
have been completed, or to save the marks table across
82
82
incremental runs. As <file> is only opened and truncated
83
83
at checkpoint (or completion) the same path can also be
84
- safely given to \ --import-marks.
84
+ safely given to --import-marks.
85
85
86
86
--import-marks=<file>::
87
87
Before processing any input, load the marks specified in
88
88
<file>. The input file must exist, must be readable, and
89
- must use the same format as produced by \ --export-marks.
89
+ must use the same format as produced by --export-marks.
90
90
Multiple options may be supplied to import more than one
91
91
set of marks. If a mark is defined to different values,
92
92
the last file wins.
@@ -179,8 +179,8 @@ fast-forward update, fast-import will skip updating that ref and instead
179
179
prints a warning message. fast-import will always attempt to update all
180
180
branch refs, and does not stop on the first failure.
181
181
182
- Branch updates can be forced with \ --force, but it's recommended that
183
- this only be used on an otherwise quiet repository. Using \ --force
182
+ Branch updates can be forced with --force, but it's recommended that
183
+ this only be used on an otherwise quiet repository. Using --force
184
184
is not necessary for an initial import into an empty repository.
185
185
186
186
@@ -231,11 +231,11 @@ Date Formats
231
231
~~~~~~~~~~~~
232
232
The following date formats are supported. A frontend should select
233
233
the format it will use for this import by passing the format name
234
- in the \ --date-format=<fmt> command-line option.
234
+ in the --date-format=<fmt> command-line option.
235
235
236
236
`raw`::
237
237
This is the Git native format and is `<time> SP <offutc>`.
238
- It is also fast-import's default format, if \ --date-format was
238
+ It is also fast-import's default format, if --date-format was
239
239
not specified.
240
240
+
241
241
The time of the event is specified by `<time>` as the number of
@@ -437,7 +437,7 @@ the email address from the other fields in the line. Note that
437
437
of bytes, except `LT`, `GT` and `LF`. `<name>` is typically UTF-8 encoded.
438
438
439
439
The time of the change is specified by `<when>` using the date format
440
- that was selected by the \ --date-format=<fmt> command-line option.
440
+ that was selected by the --date-format=<fmt> command-line option.
441
441
See ``Date Formats'' above for the set of supported formats, and
442
442
their syntax.
443
443
@@ -600,7 +600,7 @@ be removed from the branch.
600
600
See `filemodify` above for a detailed description of `<path>`.
601
601
602
602
`filecopy`
603
- ^^^^^^^^^^^^
603
+ ^^^^^^^^^^
604
604
Recursively copies an existing file or subdirectory to a different
605
605
location within the branch. The existing file or directory must
606
606
exist. If the destination exists it will be completely replaced
@@ -888,7 +888,7 @@ save out all current branch refs, tags and marks.
888
888
....
889
889
890
890
Note that fast-import automatically switches packfiles when the current
891
- packfile reaches \ --max-pack-size, or 4 GiB, whichever limit is
891
+ packfile reaches --max-pack-size, or 4 GiB, whichever limit is
892
892
smaller. During an automatic packfile switch fast-import does not update
893
893
the branch refs, tags or marks.
894
894
@@ -1226,7 +1226,7 @@ users of fast-import, and are offered here as suggestions.
1226
1226
Use One Mark Per Commit
1227
1227
~~~~~~~~~~~~~~~~~~~~~~~
1228
1228
When doing a repository conversion, use a unique mark per commit
1229
- (`mark :<n>`) and supply the \ --export-marks option on the command
1229
+ (`mark :<n>`) and supply the --export-marks option on the command
1230
1230
line. fast-import will dump a file which lists every mark and the Git
1231
1231
object SHA-1 that corresponds to it. If the frontend can tie
1232
1232
the marks back to the source repository, it is easy to verify the
@@ -1291,7 +1291,7 @@ even for considerably large projects (100,000+ commits).
1291
1291
1292
1292
However repacking the repository is necessary to improve data
1293
1293
locality and access performance. It can also take hours on extremely
1294
- large projects (especially if -f and a large \ --window parameter is
1294
+ large projects (especially if -f and a large --window parameter is
1295
1295
used). Since repacking is safe to run alongside readers and writers,
1296
1296
run the repack in the background and let it finish when it finishes.
1297
1297
There is no reason to wait to explore your new Git project!
@@ -1305,7 +1305,7 @@ Repacking Historical Data
1305
1305
~~~~~~~~~~~~~~~~~~~~~~~~~
1306
1306
If you are repacking very old imported data (e.g. older than the
1307
1307
last year), consider expending some extra CPU time and supplying
1308
- \ --window=50 (or higher) when you run 'git repack'.
1308
+ --window=50 (or higher) when you run 'git repack'.
1309
1309
This will take longer, but will also produce a smaller packfile.
1310
1310
You only need to expend the effort once, and everyone using your
1311
1311
project will benefit from the smaller repository.
@@ -1407,7 +1407,7 @@ branch, their in-memory storage size can grow to a considerable size
1407
1407
fast-import automatically moves active branches to inactive status based on
1408
1408
a simple least-recently-used algorithm. The LRU chain is updated on
1409
1409
each `commit` command. The maximum number of active branches can be
1410
- increased or decreased on the command line with \ --active-branches=.
1410
+ increased or decreased on the command line with --active-branches=.
1411
1411
1412
1412
per active tree
1413
1413
~~~~~~~~~~~~~~~
0 commit comments