@@ -42,13 +42,13 @@ OPTIONS
4242--quiet::
4343 Disable all non-fatal output, making fast-import silent when it
4444 is successful. This option disables the output shown by
45- \ --stats.
45+ --stats.
4646
4747--stats::
4848 Display some basic statistics about the objects fast-import has
4949 created, the packfiles they were stored into, and the
5050 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.
5252
5353Options for Frontends
5454~~~~~~~~~~~~~~~~~~~~~
@@ -81,12 +81,12 @@ Locations of Marks Files
8181 have been completed, or to save the marks table across
8282 incremental runs. As <file> is only opened and truncated
8383 at checkpoint (or completion) the same path can also be
84- safely given to \ --import-marks.
84+ safely given to --import-marks.
8585
8686--import-marks=<file>::
8787 Before processing any input, load the marks specified in
8888 <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.
9090 Multiple options may be supplied to import more than one
9191 set of marks. If a mark is defined to different values,
9292 the last file wins.
@@ -179,8 +179,8 @@ fast-forward update, fast-import will skip updating that ref and instead
179179prints a warning message. fast-import will always attempt to update all
180180branch refs, and does not stop on the first failure.
181181
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
184184is not necessary for an initial import into an empty repository.
185185
186186
@@ -231,11 +231,11 @@ Date Formats
231231~~~~~~~~~~~~
232232The following date formats are supported. A frontend should select
233233the 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.
235235
236236`raw`::
237237 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
239239 not specified.
240240+
241241The 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
437437of bytes, except `LT`, `GT` and `LF`. `<name>` is typically UTF-8 encoded.
438438
439439The 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.
441441See ``Date Formats'' above for the set of supported formats, and
442442their syntax.
443443
@@ -600,7 +600,7 @@ be removed from the branch.
600600See `filemodify` above for a detailed description of `<path>`.
601601
602602`filecopy`
603- ^^^^^^^^^^^^
603+ ^^^^^^^^^^
604604Recursively copies an existing file or subdirectory to a different
605605location within the branch. The existing file or directory must
606606exist. If the destination exists it will be completely replaced
@@ -888,7 +888,7 @@ save out all current branch refs, tags and marks.
888888....
889889
890890Note 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
892892smaller. During an automatic packfile switch fast-import does not update
893893the branch refs, tags or marks.
894894
@@ -1226,7 +1226,7 @@ users of fast-import, and are offered here as suggestions.
12261226Use One Mark Per Commit
12271227~~~~~~~~~~~~~~~~~~~~~~~
12281228When 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
12301230line. fast-import will dump a file which lists every mark and the Git
12311231object SHA-1 that corresponds to it. If the frontend can tie
12321232the marks back to the source repository, it is easy to verify the
@@ -1291,7 +1291,7 @@ even for considerably large projects (100,000+ commits).
12911291
12921292However repacking the repository is necessary to improve data
12931293locality 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
12951295used). Since repacking is safe to run alongside readers and writers,
12961296run the repack in the background and let it finish when it finishes.
12971297There is no reason to wait to explore your new Git project!
@@ -1305,7 +1305,7 @@ Repacking Historical Data
13051305~~~~~~~~~~~~~~~~~~~~~~~~~
13061306If you are repacking very old imported data (e.g. older than the
13071307last 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'.
13091309This will take longer, but will also produce a smaller packfile.
13101310You only need to expend the effort once, and everyone using your
13111311project will benefit from the smaller repository.
@@ -1407,7 +1407,7 @@ branch, their in-memory storage size can grow to a considerable size
14071407fast-import automatically moves active branches to inactive status based on
14081408a simple least-recently-used algorithm. The LRU chain is updated on
14091409each `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=.
14111411
14121412per active tree
14131413~~~~~~~~~~~~~~~
0 commit comments