]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-fast-import.txt
Merge branch 'nd/am-i18n-fix'
[thirdparty/git.git] / Documentation / git-fast-import.txt
CommitLineData
6e411d20
SP
1git-fast-import(1)
2==================
3
4NAME
5----
7a33631f 6git-fast-import - Backend for fast Git data importers
6e411d20
SP
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
b1889c36 12frontend | 'git fast-import' [options]
6e411d20
SP
13
14DESCRIPTION
15-----------
16This program is usually not what the end user wants to run directly.
17Most end users want to use one of the existing frontend programs,
18which parses a specific type of foreign source and feeds the contents
0b444cdb 19stored there to 'git fast-import'.
6e411d20 20
882227f1 21fast-import reads a mixed command/data stream from standard input and
6e411d20
SP
22writes one or more packfiles directly into the current repository.
23When EOF is received on standard input, fast import writes out
24updated branch and tag refs, fully updating the current repository
25with the newly imported data.
26
882227f1 27The fast-import backend itself can import into an empty repository (one that
0b444cdb 28has already been initialized by 'git init') or incrementally
6e411d20
SP
29update an existing populated repository. Whether or not incremental
30imports are supported from a particular foreign source depends on
31the frontend program in use.
32
33
34OPTIONS
35-------
63e0c8b3
SP
36--date-format=<fmt>::
37 Specify the type of dates the frontend will supply to
882227f1 38 fast-import within `author`, `committer` and `tagger` commands.
63e0c8b3
SP
39 See ``Date Formats'' below for details about which formats
40 are supported, and their syntax.
41
7073e69e
SP
42--force::
43 Force updating modified existing branches, even if doing
44 so would cause commits to be lost (as the new commit does
45 not contain the old commit).
46
6e411d20 47--max-pack-size=<n>::
4d0cc224 48 Maximum size of each output packfile.
89e0a3a1 49 The default is unlimited.
6e411d20 50
5eef828b
SP
51--big-file-threshold=<n>::
52 Maximum size of a blob that fast-import will attempt to
53 create a delta for, expressed in bytes. The default is 512m
54 (512 MiB). Some importers may wish to lower this on systems
55 with constrained memory.
56
6e411d20
SP
57--depth=<n>::
58 Maximum delta depth, for blob and tree deltification.
59 Default is 10.
60
61--active-branches=<n>::
62 Maximum number of branches to maintain active at once.
63 See ``Memory Utilization'' below for details. Default is 5.
64
65--export-marks=<file>::
66 Dumps the internal marks table to <file> when complete.
67 Marks are written one per line as `:markid SHA-1`.
68 Frontends can use this file to validate imports after they
e8438420
SP
69 have been completed, or to save the marks table across
70 incremental runs. As <file> is only opened and truncated
71 at checkpoint (or completion) the same path can also be
72 safely given to \--import-marks.
73
74--import-marks=<file>::
75 Before processing any input, load the marks specified in
76 <file>. The input file must exist, must be readable, and
77 must use the same format as produced by \--export-marks.
78 Multiple options may be supplied to import more than one
79 set of marks. If a mark is defined to different values,
80 the last file wins.
6e411d20 81
dded4f12
RR
82--import-marks-if-exists=<file>::
83 Like --import-marks but instead of erroring out, silently
84 skips the file if it does not exist.
85
bc3c79ae 86--relative-marks::
9fee24ca 87 After specifying --relative-marks the paths specified
bc3c79ae
SR
88 with --import-marks= and --export-marks= are relative
89 to an internal directory in the current repository.
90 In git-fast-import this means that the paths are relative
91 to the .git/info/fast-import directory. However, other
92 importers may use a different location.
93
94--no-relative-marks::
95 Negates a previous --relative-marks. Allows for combining
96 relative and non-relative marks by interweaving
9fee24ca 97 --(no-)-relative-marks with the --(import|export)-marks=
bc3c79ae
SR
98 options.
99
85c62395 100--cat-blob-fd=<fd>::
d57e490a
JN
101 Write responses to `cat-blob` and `ls` queries to the
102 file descriptor <fd> instead of `stdout`. Allows `progress`
103 output intended for the end-user to be separated from other
104 output.
85c62395 105
be56862f
SR
106--done::
107 Require a `done` command at the end of the stream.
108 This option might be useful for detecting errors that
109 cause the frontend to terminate before it has started to
110 write a stream.
111
bdf1c06d
SP
112--export-pack-edges=<file>::
113 After creating a packfile, print a line of data to
114 <file> listing the filename of the packfile and the last
115 commit on each branch that was written to that packfile.
116 This information may be useful after importing projects
117 whose total object set exceeds the 4 GiB packfile limit,
118 as these commits can be used as edge points during calls
0b444cdb 119 to 'git pack-objects'.
bdf1c06d 120
c499d768 121--quiet::
882227f1 122 Disable all non-fatal output, making fast-import silent when it
7f9d77f2 123 is successful. This option disables the output shown by
c499d768
SP
124 \--stats.
125
126--stats::
882227f1 127 Display some basic statistics about the objects fast-import has
c499d768 128 created, the packfiles they were stored into, and the
882227f1 129 memory used by fast-import during this run. Showing this output
c499d768
SP
130 is currently the default, but can be disabled with \--quiet.
131
132
6e411d20
SP
133Performance
134-----------
882227f1 135The design of fast-import allows it to import large projects in a minimum
6e411d20 136amount of memory usage and processing time. Assuming the frontend
882227f1 137is able to keep up with fast-import and feed it a constant stream of data,
6e411d20
SP
138import times for projects holding 10+ years of history and containing
139100,000+ individual commits are generally completed in just 1-2
140hours on quite modest (~$2,000 USD) hardware.
141
142Most bottlenecks appear to be in foreign source data access (the
882227f1 143source just cannot extract revisions fast enough) or disk IO (fast-import
6e411d20
SP
144writes as fast as the disk will take the data). Imports will run
145faster if the source data is stored on a different drive than the
146destination Git repository (due to less IO contention).
147
148
149Development Cost
150----------------
882227f1 151A typical frontend for fast-import tends to weigh in at approximately 200
6e411d20
SP
152lines of Perl/Python/Ruby code. Most developers have been able to
153create working importers in just a couple of hours, even though it
882227f1 154is their first exposure to fast-import, and sometimes even to Git. This is
6e411d20
SP
155an ideal situation, given that most conversion tools are throw-away
156(use once, and never look back).
157
158
159Parallel Operation
160------------------
0b444cdb 161Like 'git push' or 'git fetch', imports handled by fast-import are safe to
6e411d20 162run alongside parallel `git repack -a -d` or `git gc` invocations,
0b444cdb 163or any other Git operation (including 'git prune', as loose objects
882227f1 164are never used by fast-import).
6e411d20 165
882227f1
SP
166fast-import does not lock the branch or tag refs it is actively importing.
167After the import, during its ref update phase, fast-import tests each
7073e69e
SP
168existing branch ref to verify the update will be a fast-forward
169update (the commit stored in the ref is contained in the new
170history of the commit to be written). If the update is not a
882227f1
SP
171fast-forward update, fast-import will skip updating that ref and instead
172prints a warning message. fast-import will always attempt to update all
7073e69e
SP
173branch refs, and does not stop on the first failure.
174
6a5d0b0a 175Branch updates can be forced with \--force, but it's recommended that
c499d768 176this only be used on an otherwise quiet repository. Using \--force
7073e69e 177is not necessary for an initial import into an empty repository.
6e411d20
SP
178
179
180Technical Discussion
181--------------------
882227f1 182fast-import tracks a set of branches in memory. Any branch can be created
6e411d20
SP
183or modified at any point during the import process by sending a
184`commit` command on the input stream. This design allows a frontend
185program to process an unlimited number of branches simultaneously,
186generating commits in the order they are available from the source
187data. It also simplifies the frontend programs considerably.
188
882227f1 189fast-import does not use or alter the current working directory, or any
6e411d20
SP
190file within it. (It does however update the current Git repository,
191as referenced by `GIT_DIR`.) Therefore an import frontend may use
192the working directory for its own purposes, such as extracting file
193revisions from the foreign source. This ignorance of the working
882227f1 194directory also allows fast-import to run very quickly, as it does not
6e411d20
SP
195need to perform any costly file update operations when switching
196between branches.
197
198Input Format
199------------
200With the exception of raw file data (which Git does not interpret)
882227f1 201the fast-import input format is text (ASCII) based. This text based
6e411d20
SP
202format simplifies development and debugging of frontend programs,
203especially when a higher level language such as Perl, Python or
204Ruby is being used.
205
882227f1 206fast-import is very strict about its input. Where we say SP below we mean
8dc6a373
DB
207*exactly* one space. Likewise LF means one (and only one) linefeed
208and HT one (and only one) horizontal tab.
6e411d20
SP
209Supplying additional whitespace characters will cause unexpected
210results, such as branch names or file names with leading or trailing
882227f1 211spaces in their name, or early termination of fast-import when it encounters
6e411d20
SP
212unexpected input.
213
401d53fa
SP
214Stream Comments
215~~~~~~~~~~~~~~~
216To aid in debugging frontends fast-import ignores any line that
217begins with `#` (ASCII pound/hash) up to and including the line
218ending `LF`. A comment line may contain any sequence of bytes
219that does not contain an LF and therefore may be used to include
220any detailed debugging information that might be specific to the
221frontend and useful when inspecting a fast-import data stream.
222
63e0c8b3
SP
223Date Formats
224~~~~~~~~~~~~
225The following date formats are supported. A frontend should select
226the format it will use for this import by passing the format name
c499d768 227in the \--date-format=<fmt> command line option.
63e0c8b3
SP
228
229`raw`::
9b92c82f 230 This is the Git native format and is `<time> SP <offutc>`.
882227f1 231 It is also fast-import's default format, if \--date-format was
63e0c8b3
SP
232 not specified.
233+
234The time of the event is specified by `<time>` as the number of
235seconds since the UNIX epoch (midnight, Jan 1, 1970, UTC) and is
236written as an ASCII decimal integer.
237+
9b92c82f
SP
238The local offset is specified by `<offutc>` as a positive or negative
239offset from UTC. For example EST (which is 5 hours behind UTC)
240would be expressed in `<tz>` by ``-0500'' while UTC is ``+0000''.
241The local offset does not affect `<time>`; it is used only as an
242advisement to help formatting routines display the timestamp.
63e0c8b3 243+
9b92c82f
SP
244If the local offset is not available in the source material, use
245``+0000'', or the most common local offset. For example many
63e0c8b3
SP
246organizations have a CVS repository which has only ever been accessed
247by users who are located in the same location and timezone. In this
f842fdb0 248case a reasonable offset from UTC could be assumed.
63e0c8b3
SP
249+
250Unlike the `rfc2822` format, this format is very strict. Any
882227f1 251variation in formatting will cause fast-import to reject the value.
63e0c8b3
SP
252
253`rfc2822`::
254 This is the standard email format as described by RFC 2822.
255+
256An example value is ``Tue Feb 6 11:22:18 2007 -0500''. The Git
f842fdb0 257parser is accurate, but a little on the lenient side. It is the
0b444cdb 258same parser used by 'git am' when applying patches
63e0c8b3
SP
259received from email.
260+
261Some malformed strings may be accepted as valid dates. In some of
262these cases Git will still be able to obtain the correct date from
263the malformed string. There are also some types of malformed
264strings which Git will parse wrong, and yet consider valid.
265Seriously malformed strings will be rejected.
266+
9b92c82f
SP
267Unlike the `raw` format above, the timezone/UTC offset information
268contained in an RFC 2822 date string is used to adjust the date
269value to UTC prior to storage. Therefore it is important that
270this information be as accurate as possible.
271+
f842fdb0 272If the source material uses RFC 2822 style dates,
882227f1 273the frontend should let fast-import handle the parsing and conversion
63e0c8b3
SP
274(rather than attempting to do it itself) as the Git parser has
275been well tested in the wild.
276+
277Frontends should prefer the `raw` format if the source material
f842fdb0 278already uses UNIX-epoch format, can be coaxed to give dates in that
02783075 279format, or its format is easily convertible to it, as there is no
f842fdb0 280ambiguity in parsing.
63e0c8b3
SP
281
282`now`::
283 Always use the current time and timezone. The literal
284 `now` must always be supplied for `<when>`.
285+
286This is a toy format. The current time and timezone of this system
287is always copied into the identity string at the time it is being
882227f1 288created by fast-import. There is no way to specify a different time or
63e0c8b3
SP
289timezone.
290+
6a5d0b0a 291This particular format is supplied as it's short to implement and
63e0c8b3
SP
292may be useful to a process that wants to create a new commit
293right now, without needing to use a working directory or
0b444cdb 294'git update-index'.
63e0c8b3
SP
295+
296If separate `author` and `committer` commands are used in a `commit`
297the timestamps may not match, as the system clock will be polled
298twice (once for each command). The only way to ensure that both
299author and committer identity information has the same timestamp
300is to omit `author` (thus copying from `committer`) or to use a
301date format other than `now`.
302
6e411d20
SP
303Commands
304~~~~~~~~
882227f1 305fast-import accepts several commands to update the current repository
6e411d20
SP
306and control the current import process. More detailed discussion
307(with examples) of each command follows later.
308
309`commit`::
310 Creates a new branch or updates an existing branch by
311 creating a new commit and updating the branch to point at
312 the newly created commit.
313
314`tag`::
315 Creates an annotated tag object from an existing commit or
316 branch. Lightweight tags are not supported by this command,
317 as they are not recommended for recording meaningful points
318 in time.
319
320`reset`::
321 Reset an existing branch (or a new branch) to a specific
322 revision. This command must be used to change a branch to
323 a specific revision without making a commit on it.
324
325`blob`::
326 Convert raw file data into a blob, for future use in a
327 `commit` command. This command is optional and is not
328 needed to perform an import.
329
330`checkpoint`::
882227f1 331 Forces fast-import to close the current packfile, generate its
6e411d20
SP
332 unique SHA-1 checksum and index, and start a new packfile.
333 This command is optional and is not needed to perform
334 an import.
335
ac053c02
SP
336`progress`::
337 Causes fast-import to echo the entire line to its own
338 standard output. This command is optional and is not needed
339 to perform an import.
340
be56862f
SR
341`done`::
342 Marks the end of the stream. This command is optional
343 unless the `done` feature was requested using the
344 `--done` command line option or `feature done` command.
345
85c62395
DB
346`cat-blob`::
347 Causes fast-import to print a blob in 'cat-file --batch'
348 format to the file descriptor set with `--cat-blob-fd` or
349 `stdout` if unspecified.
350
8dc6a373
DB
351`ls`::
352 Causes fast-import to print a line describing a directory
353 entry in 'ls-tree' format to the file descriptor set with
354 `--cat-blob-fd` or `stdout` if unspecified.
355
f963bd5d
SR
356`feature`::
357 Require that fast-import supports the specified feature, or
358 abort if it does not.
359
9c8398f0
SR
360`option`::
361 Specify any of the options listed under OPTIONS that do not
362 change stream semantic to suit the frontend's needs. This
363 command is optional and is not needed to perform an import.
364
6e411d20
SP
365`commit`
366~~~~~~~~
367Create or update a branch with a new commit, recording one logical
368change to the project.
369
370....
371 'commit' SP <ref> LF
372 mark?
74fbd118
SP
373 ('author' (SP <name>)? SP LT <email> GT SP <when> LF)?
374 'committer' (SP <name>)? SP LT <email> GT SP <when> LF
6e411d20
SP
375 data
376 ('from' SP <committish> LF)?
377 ('merge' SP <committish> LF)?
a8dd2e7d 378 (filemodify | filedelete | filecopy | filerename | filedeleteall | notemodify)*
1fdb649c 379 LF?
6e411d20
SP
380....
381
382where `<ref>` is the name of the branch to make the commit on.
383Typically branch names are prefixed with `refs/heads/` in
384Git, so importing the CVS branch symbol `RELENG-1_0` would use
385`refs/heads/RELENG-1_0` for the value of `<ref>`. The value of
386`<ref>` must be a valid refname in Git. As `LF` is not valid in
387a Git refname, no quoting or escaping syntax is supported here.
388
882227f1 389A `mark` command may optionally appear, requesting fast-import to save a
6e411d20
SP
390reference to the newly created commit for future use by the frontend
391(see below for format). It is very common for frontends to mark
392every commit they create, thereby allowing future branch creation
393from any imported commit.
394
395The `data` command following `committer` must supply the commit
396message (see below for `data` command syntax). To import an empty
397commit message use a 0 length data. Commit messages are free-form
398and are not interpreted by Git. Currently they must be encoded in
882227f1 399UTF-8, as fast-import does not permit other encodings to be specified.
6e411d20 400
a8dd2e7d
JH
401Zero or more `filemodify`, `filedelete`, `filecopy`, `filerename`,
402`filedeleteall` and `notemodify` commands
825769a8
SP
403may be included to update the contents of the branch prior to
404creating the commit. These commands may be supplied in any order.
02783075 405However it is recommended that a `filedeleteall` command precede
a8dd2e7d
JH
406all `filemodify`, `filecopy`, `filerename` and `notemodify` commands in
407the same commit, as `filedeleteall` wipes the branch clean (see below).
6e411d20 408
1fdb649c
SP
409The `LF` after the command is optional (it used to be required).
410
6e411d20
SP
411`author`
412^^^^^^^^
413An `author` command may optionally appear, if the author information
414might differ from the committer information. If `author` is omitted
882227f1 415then fast-import will automatically use the committer's information for
6e411d20
SP
416the author portion of the commit. See below for a description of
417the fields in `author`, as they are identical to `committer`.
418
419`committer`
420^^^^^^^^^^^
421The `committer` command indicates who made this commit, and when
422they made it.
423
424Here `<name>` is the person's display name (for example
425``Com M Itter'') and `<email>` is the person's email address
426(``cm@example.com''). `LT` and `GT` are the literal less-than (\x3c)
427and greater-than (\x3e) symbols. These are required to delimit
428the email address from the other fields in the line. Note that
4b4963c0
DI
429`<name>` and `<email>` are free-form and may contain any sequence
430of bytes, except `LT`, `GT` and `LF`. `<name>` is typically UTF-8 encoded.
6e411d20 431
63e0c8b3 432The time of the change is specified by `<when>` using the date format
c499d768 433that was selected by the \--date-format=<fmt> command line option.
63e0c8b3
SP
434See ``Date Formats'' above for the set of supported formats, and
435their syntax.
6e411d20
SP
436
437`from`
438^^^^^^
ea5e370a
SP
439The `from` command is used to specify the commit to initialize
440this branch from. This revision will be the first ancestor of the
441new commit.
442
443Omitting the `from` command in the first commit of a new branch
444will cause fast-import to create that commit with no ancestor. This
445tends to be desired only for the initial commit of a project.
9b33fa08
EB
446If the frontend creates all files from scratch when making a new
447branch, a `merge` command may be used instead of `from` to start
448the commit with an empty tree.
ea5e370a
SP
449Omitting the `from` command on existing branches is usually desired,
450as the current commit on that branch is automatically assumed to
451be the first ancestor of the new commit.
6e411d20
SP
452
453As `LF` is not valid in a Git refname or SHA-1 expression, no
454quoting or escaping syntax is supported within `<committish>`.
455
456Here `<committish>` is any of the following:
457
882227f1 458* The name of an existing branch already in fast-import's internal branch
6a5d0b0a 459 table. If fast-import doesn't know the name, it's treated as a SHA-1
6e411d20
SP
460 expression.
461
462* A mark reference, `:<idnum>`, where `<idnum>` is the mark number.
463+
882227f1 464The reason fast-import uses `:` to denote a mark reference is this character
6e411d20 465is not legal in a Git branch name. The leading `:` makes it easy
02783075 466to distinguish between the mark 42 (`:42`) and the branch 42 (`42`
6e411d20
SP
467or `refs/heads/42`), or an abbreviated SHA-1 which happened to
468consist only of base-10 digits.
469+
470Marks must be declared (via `mark`) before they can be used.
471
472* A complete 40 byte or abbreviated commit SHA-1 in hex.
473
474* Any valid Git SHA-1 expression that resolves to a commit. See
9d83e382 475 ``SPECIFYING REVISIONS'' in linkgit:gitrevisions[7] for details.
6e411d20
SP
476
477The special case of restarting an incremental import from the
478current branch value should be written as:
479----
480 from refs/heads/branch^0
481----
6cf378f0 482The `^0` suffix is necessary as fast-import does not permit a branch to
6e411d20 483start from itself, and the branch is created in memory before the
6cf378f0 484`from` command is even read from the input. Adding `^0` will force
882227f1 485fast-import to resolve the commit through Git's revision parsing library,
6e411d20
SP
486rather than its internal branch table, thereby loading in the
487existing value of the branch.
488
489`merge`
490^^^^^^^
9b33fa08
EB
491Includes one additional ancestor commit. If the `from` command is
492omitted when creating a new branch, the first `merge` commit will be
493the first ancestor of the current commit, and the branch will start
494out with no files. An unlimited number of `merge` commands per
882227f1 495commit are permitted by fast-import, thereby establishing an n-way merge.
6e411d20
SP
496However Git's other tools never create commits with more than 15
497additional ancestors (forming a 16-way merge). For this reason
498it is suggested that frontends do not use more than 15 `merge`
9b33fa08 499commands per commit; 16, if starting a new, empty branch.
6e411d20
SP
500
501Here `<committish>` is any of the commit specification expressions
502also accepted by `from` (see above).
503
504`filemodify`
ef94edb5 505^^^^^^^^^^^^
6e411d20
SP
506Included in a `commit` command to add a new file or change the
507content of an existing file. This command has two different means
508of specifying the content of the file.
509
510External data format::
511 The data content for the file was already supplied by a prior
512 `blob` command. The frontend just needs to connect it.
513+
514....
515 'M' SP <mode> SP <dataref> SP <path> LF
516....
517+
334fba65 518Here usually `<dataref>` must be either a mark reference (`:<idnum>`)
6e411d20 519set by a prior `blob` command, or a full 40-byte SHA-1 of an
334fba65
JN
520existing Git blob object. If `<mode>` is `040000`` then
521`<dataref>` must be the full 40-byte SHA-1 of an existing
522Git tree object or a mark reference set with `--import-marks`.
6e411d20
SP
523
524Inline data format::
525 The data content for the file has not been supplied yet.
526 The frontend wants to supply it as part of this modify
527 command.
528+
529....
530 'M' SP <mode> SP 'inline' SP <path> LF
531 data
532....
533+
534See below for a detailed description of the `data` command.
535
536In both formats `<mode>` is the type of file entry, specified
537in octal. Git only supports the following modes:
538
539* `100644` or `644`: A normal (not-executable) file. The majority
540 of files in most projects use this mode. If in doubt, this is
541 what you want.
542* `100755` or `755`: A normal, but executable, file.
9981b6d9 543* `120000`: A symlink, the content of the file will be the link target.
03db4525
AG
544* `160000`: A gitlink, SHA-1 of the object refers to a commit in
545 another repository. Git links can only be specified by SHA or through
546 a commit mark. They are used to implement submodules.
334fba65
JN
547* `040000`: A subdirectory. Subdirectories can only be specified by
548 SHA or through a tree mark set with `--import-marks`.
6e411d20
SP
549
550In both formats `<path>` is the complete path of the file to be added
551(if not already existing) or modified (if already existing).
552
c4431d38 553A `<path>` string must use UNIX-style directory separators (forward
6e411d20
SP
554slash `/`), may contain any byte other than `LF`, and must not
555start with double quote (`"`).
556
557If an `LF` or double quote must be encoded into `<path>` shell-style
558quoting should be used, e.g. `"path/with\n and \" in it"`.
559
02783075 560The value of `<path>` must be in canonical form. That is it must not:
6e411d20
SP
561
562* contain an empty directory component (e.g. `foo//bar` is invalid),
c4431d38
JK
563* end with a directory separator (e.g. `foo/` is invalid),
564* start with a directory separator (e.g. `/foo` is invalid),
6e411d20
SP
565* contain the special component `.` or `..` (e.g. `foo/./bar` and
566 `foo/../bar` are invalid).
567
e5959106
JN
568The root of the tree can be represented by an empty string as `<path>`.
569
6e411d20
SP
570It is recommended that `<path>` always be encoded using UTF-8.
571
6e411d20 572`filedelete`
ef94edb5 573^^^^^^^^^^^^
512e44b2
SP
574Included in a `commit` command to remove a file or recursively
575delete an entire directory from the branch. If the file or directory
576removal makes its parent directory empty, the parent directory will
6e411d20
SP
577be automatically removed too. This cascades up the tree until the
578first non-empty directory or the root is reached.
579
580....
581 'D' SP <path> LF
582....
583
512e44b2
SP
584here `<path>` is the complete path of the file or subdirectory to
585be removed from the branch.
6e411d20
SP
586See `filemodify` above for a detailed description of `<path>`.
587
b6f3481b
SP
588`filecopy`
589^^^^^^^^^^^^
590Recursively copies an existing file or subdirectory to a different
591location within the branch. The existing file or directory must
592exist. If the destination exists it will be completely replaced
593by the content copied from the source.
594
595....
596 'C' SP <path> SP <path> LF
597....
598
599here the first `<path>` is the source location and the second
600`<path>` is the destination. See `filemodify` above for a detailed
601description of what `<path>` may look like. To use a source path
602that contains SP the path must be quoted.
603
604A `filecopy` command takes effect immediately. Once the source
605location has been copied to the destination any future commands
606applied to the source location will not impact the destination of
607the copy.
608
f39a946a
SP
609`filerename`
610^^^^^^^^^^^^
611Renames an existing file or subdirectory to a different location
612within the branch. The existing file or directory must exist. If
613the destination exists it will be replaced by the source directory.
614
615....
616 'R' SP <path> SP <path> LF
617....
618
619here the first `<path>` is the source location and the second
620`<path>` is the destination. See `filemodify` above for a detailed
621description of what `<path>` may look like. To use a source path
622that contains SP the path must be quoted.
623
624A `filerename` command takes effect immediately. Once the source
625location has been renamed to the destination any future commands
626applied to the source location will create new files there and not
627impact the destination of the rename.
628
b6f3481b
SP
629Note that a `filerename` is the same as a `filecopy` followed by a
630`filedelete` of the source location. There is a slight performance
631advantage to using `filerename`, but the advantage is so small
632that it is never worth trying to convert a delete/add pair in
633source material into a rename for fast-import. This `filerename`
634command is provided just to simplify frontends that already have
635rename information and don't want bother with decomposing it into a
636`filecopy` followed by a `filedelete`.
637
825769a8
SP
638`filedeleteall`
639^^^^^^^^^^^^^^^
640Included in a `commit` command to remove all files (and also all
641directories) from the branch. This command resets the internal
642branch structure to have no files in it, allowing the frontend
643to subsequently add all interesting files from scratch.
644
645....
646 'deleteall' LF
647....
648
649This command is extremely useful if the frontend does not know
650(or does not care to know) what files are currently on the branch,
651and therefore cannot generate the proper `filedelete` commands to
652update the content.
653
654Issuing a `filedeleteall` followed by the needed `filemodify`
655commands to set the correct content will produce the same results
656as sending only the needed `filemodify` and `filedelete` commands.
882227f1 657The `filedeleteall` approach may however require fast-import to use slightly
825769a8
SP
658more memory per active branch (less than 1 MiB for even most large
659projects); so frontends that can easily obtain only the affected
660paths for a commit are encouraged to do so.
661
a8dd2e7d
JH
662`notemodify`
663^^^^^^^^^^^^
b421812b
DI
664Included in a `commit` `<notes_ref>` command to add a new note
665annotating a `<committish>` or change this annotation contents.
666Internally it is similar to filemodify 100644 on `<committish>`
667path (maybe split into subdirectories). It's not advised to
668use any other commands to write to the `<notes_ref>` tree except
669`filedeleteall` to delete all existing notes in this tree.
670This command has two different means of specifying the content
671of the note.
a8dd2e7d
JH
672
673External data format::
674 The data content for the note was already supplied by a prior
675 `blob` command. The frontend just needs to connect it to the
676 commit that is to be annotated.
677+
678....
679 'N' SP <dataref> SP <committish> LF
680....
681+
682Here `<dataref>` can be either a mark reference (`:<idnum>`)
683set by a prior `blob` command, or a full 40-byte SHA-1 of an
684existing Git blob object.
685
686Inline data format::
687 The data content for the note has not been supplied yet.
688 The frontend wants to supply it as part of this modify
689 command.
690+
691....
692 'N' SP 'inline' SP <committish> LF
693 data
694....
695+
696See below for a detailed description of the `data` command.
697
698In both formats `<committish>` is any of the commit specification
699expressions also accepted by `from` (see above).
700
6e411d20
SP
701`mark`
702~~~~~~
882227f1 703Arranges for fast-import to save a reference to the current object, allowing
6e411d20
SP
704the frontend to recall this object at a future point in time, without
705knowing its SHA-1. Here the current object is the object creation
706command the `mark` command appears within. This can be `commit`,
707`tag`, and `blob`, but `commit` is the most common usage.
708
709....
710 'mark' SP ':' <idnum> LF
711....
712
713where `<idnum>` is the number assigned by the frontend to this mark.
ef94edb5
SP
714The value of `<idnum>` is expressed as an ASCII decimal integer.
715The value 0 is reserved and cannot be used as
6e411d20
SP
716a mark. Only values greater than or equal to 1 may be used as marks.
717
718New marks are created automatically. Existing marks can be moved
719to another object simply by reusing the same `<idnum>` in another
720`mark` command.
721
722`tag`
723~~~~~
724Creates an annotated tag referring to a specific commit. To create
725lightweight (non-annotated) tags see the `reset` command below.
726
727....
728 'tag' SP <name> LF
729 'from' SP <committish> LF
74fbd118 730 'tagger' (SP <name>)? SP LT <email> GT SP <when> LF
6e411d20 731 data
6e411d20
SP
732....
733
734where `<name>` is the name of the tag to create.
735
736Tag names are automatically prefixed with `refs/tags/` when stored
737in Git, so importing the CVS branch symbol `RELENG-1_0-FINAL` would
882227f1 738use just `RELENG-1_0-FINAL` for `<name>`, and fast-import will write the
6e411d20
SP
739corresponding ref as `refs/tags/RELENG-1_0-FINAL`.
740
741The value of `<name>` must be a valid refname in Git and therefore
742may contain forward slashes. As `LF` is not valid in a Git refname,
743no quoting or escaping syntax is supported here.
744
745The `from` command is the same as in the `commit` command; see
746above for details.
747
748The `tagger` command uses the same format as `committer` within
749`commit`; again see above for details.
750
751The `data` command following `tagger` must supply the annotated tag
752message (see below for `data` command syntax). To import an empty
753tag message use a 0 length data. Tag messages are free-form and are
754not interpreted by Git. Currently they must be encoded in UTF-8,
882227f1 755as fast-import does not permit other encodings to be specified.
6e411d20 756
882227f1 757Signing annotated tags during import from within fast-import is not
6e411d20
SP
758supported. Trying to include your own PGP/GPG signature is not
759recommended, as the frontend does not (easily) have access to the
760complete set of bytes which normally goes into such a signature.
882227f1 761If signing is required, create lightweight tags from within fast-import with
6e411d20 762`reset`, then create the annotated versions of those tags offline
0b444cdb 763with the standard 'git tag' process.
6e411d20
SP
764
765`reset`
766~~~~~~~
767Creates (or recreates) the named branch, optionally starting from
768a specific revision. The reset command allows a frontend to issue
769a new `from` command for an existing branch, or to create a new
770branch from an existing commit without creating a new commit.
771
772....
773 'reset' SP <ref> LF
774 ('from' SP <committish> LF)?
1fdb649c 775 LF?
6e411d20
SP
776....
777
778For a detailed description of `<ref>` and `<committish>` see above
779under `commit` and `from`.
780
1fdb649c
SP
781The `LF` after the command is optional (it used to be required).
782
6e411d20
SP
783The `reset` command can also be used to create lightweight
784(non-annotated) tags. For example:
785
786====
787 reset refs/tags/938
788 from :938
789====
790
791would create the lightweight tag `refs/tags/938` referring to
792whatever commit mark `:938` references.
793
794`blob`
795~~~~~~
796Requests writing one file revision to the packfile. The revision
797is not connected to any commit; this connection must be formed in
798a subsequent `commit` command by referencing the blob through an
799assigned mark.
800
801....
802 'blob' LF
803 mark?
804 data
805....
806
807The mark command is optional here as some frontends have chosen
808to generate the Git SHA-1 for the blob on their own, and feed that
6a5d0b0a 809directly to `commit`. This is typically more work than it's worth
6e411d20
SP
810however, as marks are inexpensive to store and easy to use.
811
812`data`
813~~~~~~
814Supplies raw data (for use as blob/file content, commit messages, or
882227f1 815annotated tag messages) to fast-import. Data can be supplied using an exact
6e411d20
SP
816byte count or delimited with a terminating line. Real frontends
817intended for production-quality conversions should always use the
818exact byte count format, as it is more robust and performs better.
882227f1 819The delimited format is intended primarily for testing fast-import.
6e411d20 820
401d53fa
SP
821Comment lines appearing within the `<raw>` part of `data` commands
822are always taken to be part of the body of the data and are therefore
823never ignored by fast-import. This makes it safe to import any
824file/message content whose lines might start with `#`.
825
ef94edb5
SP
826Exact byte count format::
827 The frontend must specify the number of bytes of data.
828+
6e411d20
SP
829....
830 'data' SP <count> LF
2c570cde 831 <raw> LF?
6e411d20 832....
ef94edb5 833+
6e411d20 834where `<count>` is the exact number of bytes appearing within
ef94edb5
SP
835`<raw>`. The value of `<count>` is expressed as an ASCII decimal
836integer. The `LF` on either side of `<raw>` is not
6e411d20 837included in `<count>` and will not be included in the imported data.
2c570cde
SP
838+
839The `LF` after `<raw>` is optional (it used to be required) but
840recommended. Always including it makes debugging a fast-import
841stream easier as the next command always starts in column 0
842of the next line, even if `<raw>` did not end with an `LF`.
6e411d20 843
ef94edb5
SP
844Delimited format::
845 A delimiter string is used to mark the end of the data.
882227f1 846 fast-import will compute the length by searching for the delimiter.
02783075 847 This format is primarily useful for testing and is not
ef94edb5
SP
848 recommended for real data.
849+
6e411d20
SP
850....
851 'data' SP '<<' <delim> LF
852 <raw> LF
853 <delim> LF
2c570cde 854 LF?
6e411d20 855....
ef94edb5 856+
6e411d20
SP
857where `<delim>` is the chosen delimiter string. The string `<delim>`
858must not appear on a line by itself within `<raw>`, as otherwise
882227f1 859fast-import will think the data ends earlier than it really does. The `LF`
6e411d20
SP
860immediately trailing `<raw>` is part of `<raw>`. This is one of
861the limitations of the delimited format, it is impossible to supply
862a data chunk which does not have an LF as its last byte.
2c570cde
SP
863+
864The `LF` after `<delim> LF` is optional (it used to be required).
6e411d20
SP
865
866`checkpoint`
867~~~~~~~~~~~~
882227f1 868Forces fast-import to close the current packfile, start a new one, and to
820b9310 869save out all current branch refs, tags and marks.
6e411d20
SP
870
871....
872 'checkpoint' LF
1fdb649c 873 LF?
6e411d20
SP
874....
875
882227f1 876Note that fast-import automatically switches packfiles when the current
820b9310 877packfile reaches \--max-pack-size, or 4 GiB, whichever limit is
882227f1 878smaller. During an automatic packfile switch fast-import does not update
820b9310
SP
879the branch refs, tags or marks.
880
881As a `checkpoint` can require a significant amount of CPU time and
882disk IO (to compute the overall pack SHA-1 checksum, generate the
883corresponding index file, and update the refs) it can easily take
884several minutes for a single `checkpoint` command to complete.
885
886Frontends may choose to issue checkpoints during extremely large
887and long running imports, or when they need to allow another Git
888process access to a branch. However given that a 30 GiB Subversion
882227f1 889repository can be loaded into Git through fast-import in about 3 hours,
820b9310
SP
890explicit checkpointing may not be necessary.
891
1fdb649c 892The `LF` after the command is optional (it used to be required).
820b9310 893
ac053c02
SP
894`progress`
895~~~~~~~~~~
896Causes fast-import to print the entire `progress` line unmodified to
897its standard output channel (file descriptor 1) when the command is
898processed from the input stream. The command otherwise has no impact
899on the current import, or on any of fast-import's internal state.
900
901....
902 'progress' SP <any> LF
903 LF?
904....
905
906The `<any>` part of the command may contain any sequence of bytes
907that does not contain `LF`. The `LF` after the command is optional.
908Callers may wish to process the output through a tool such as sed to
909remove the leading part of the line, for example:
910
911====
b1889c36 912 frontend | git fast-import | sed 's/^progress //'
ac053c02
SP
913====
914
915Placing a `progress` command immediately after a `checkpoint` will
916inform the reader when the `checkpoint` has been completed and it
917can safely access the refs that fast-import updated.
918
85c62395
DB
919`cat-blob`
920~~~~~~~~~~
921Causes fast-import to print a blob to a file descriptor previously
922arranged with the `--cat-blob-fd` argument. The command otherwise
923has no impact on the current import; its main purpose is to
924retrieve blobs that may be in fast-import's memory but not
925accessible from the target repository.
926
927....
928 'cat-blob' SP <dataref> LF
929....
930
931The `<dataref>` can be either a mark reference (`:<idnum>`)
932set previously or a full 40-byte SHA-1 of a Git blob, preexisting or
933ready to be written.
934
898243b8 935Output uses the same format as `git cat-file --batch`:
85c62395
DB
936
937====
938 <sha1> SP 'blob' SP <size> LF
939 <contents> LF
940====
941
777f80d7
JN
942This command can be used anywhere in the stream that comments are
943accepted. In particular, the `cat-blob` command can be used in the
944middle of a commit but not in the middle of a `data` command.
945
d57e490a
JN
946See ``Responses To Commands'' below for details about how to read
947this output safely.
948
8dc6a373
DB
949`ls`
950~~~~
951Prints information about the object at a path to a file descriptor
952previously arranged with the `--cat-blob-fd` argument. This allows
953printing a blob from the active commit (with `cat-blob`) or copying a
954blob or tree from a previous commit for use in the current one (with
955`filemodify`).
956
957The `ls` command can be used anywhere in the stream that comments are
958accepted, including the middle of a commit.
959
960Reading from the active commit::
961 This form can only be used in the middle of a `commit`.
962 The path names a directory entry within fast-import's
963 active commit. The path must be quoted in this case.
964+
965....
966 'ls' SP <path> LF
967....
968
969Reading from a named tree::
970 The `<dataref>` can be a mark reference (`:<idnum>`) or the
971 full 40-byte SHA-1 of a Git tag, commit, or tree object,
972 preexisting or waiting to be written.
973 The path is relative to the top level of the tree
974 named by `<dataref>`.
975+
976....
977 'ls' SP <dataref> SP <path> LF
978....
979
980See `filemodify` above for a detailed description of `<path>`.
981
6cf378f0 982Output uses the same format as `git ls-tree <tree> -- <path>`:
8dc6a373
DB
983
984====
985 <mode> SP ('blob' | 'tree' | 'commit') SP <dataref> HT <path> LF
986====
987
988The <dataref> represents the blob, tree, or commit object at <path>
989and can be used in later 'cat-blob', 'filemodify', or 'ls' commands.
990
991If there is no file or subtree at that path, 'git fast-import' will
992instead report
993
994====
995 missing SP <path> LF
996====
997
d57e490a
JN
998See ``Responses To Commands'' below for details about how to read
999this output safely.
1000
f963bd5d
SR
1001`feature`
1002~~~~~~~~~
1003Require that fast-import supports the specified feature, or abort if
1004it does not.
1005
1006....
4980fffb 1007 'feature' SP <feature> ('=' <argument>)? LF
f963bd5d
SR
1008....
1009
4980fffb 1010The <feature> part of the command may be any one of the following:
f963bd5d 1011
4980fffb
JN
1012date-format::
1013export-marks::
1014relative-marks::
1015no-relative-marks::
1016force::
1017 Act as though the corresponding command-line option with
1018 a leading '--' was passed on the command line
1019 (see OPTIONS, above).
f963bd5d 1020
4980fffb 1021import-marks::
3beb4fc4 1022import-marks-if-exists::
4980fffb 1023 Like --import-marks except in two respects: first, only one
3beb4fc4
DI
1024 "feature import-marks" or "feature import-marks-if-exists"
1025 command is allowed per stream; second, an --import-marks=
1026 or --import-marks-if-exists command-line option overrides
1027 any of these "feature" commands in the stream; third,
1028 "feature import-marks-if-exists" like a corresponding
1029 command-line option silently skips a nonexistent file.
f963bd5d 1030
85c62395 1031cat-blob::
8dc6a373
DB
1032ls::
1033 Require that the backend support the 'cat-blob' or 'ls' command.
1034 Versions of fast-import not supporting the specified command
1035 will exit with a message indicating so.
85c62395
DB
1036 This lets the import error out early with a clear message,
1037 rather than wasting time on the early part of an import
1038 before the unsupported command is detected.
081751c8 1039
547e8b92
JN
1040notes::
1041 Require that the backend support the 'notemodify' (N)
1042 subcommand to the 'commit' command.
1043 Versions of fast-import not supporting notes will exit
1044 with a message indicating so.
1045
be56862f
SR
1046done::
1047 Error out if the stream ends without a 'done' command.
1048 Without this feature, errors causing the frontend to end
1049 abruptly at a convenient point in the stream can go
1050 undetected.
a8e4a594 1051
9c8398f0
SR
1052`option`
1053~~~~~~~~
1054Processes the specified option so that git fast-import behaves in a
1055way that suits the frontend's needs.
1056Note that options specified by the frontend are overridden by any
1057options the user may specify to git fast-import itself.
1058
1059....
1060 'option' SP <option> LF
1061....
1062
1063The `<option>` part of the command may contain any of the options
1064listed in the OPTIONS section that do not change import semantics,
1065without the leading '--' and is treated in the same way.
1066
1067Option commands must be the first commands on the input (not counting
1068feature commands), to give an option command after any non-option
1069command is an error.
1070
1071The following commandline options change import semantics and may therefore
1072not be passed as option:
1073
1074* date-format
1075* import-marks
1076* export-marks
85c62395 1077* cat-blob-fd
9c8398f0
SR
1078* force
1079
be56862f
SR
1080`done`
1081~~~~~~
1082If the `done` feature is not in use, treated as if EOF was read.
1083This can be used to tell fast-import to finish early.
1084
1085If the `--done` command line option or `feature done` command is
1086in use, the `done` command is mandatory and marks the end of the
1087stream.
1088
d57e490a
JN
1089Responses To Commands
1090---------------------
1091New objects written by fast-import are not available immediately.
1092Most fast-import commands have no visible effect until the next
1093checkpoint (or completion). The frontend can send commands to
1094fill fast-import's input pipe without worrying about how quickly
1095they will take effect, which improves performance by simplifying
1096scheduling.
1097
1098For some frontends, though, it is useful to be able to read back
1099data from the current repository as it is being updated (for
1100example when the source material describes objects in terms of
1101patches to be applied to previously imported objects). This can
1102be accomplished by connecting the frontend and fast-import via
1103bidirectional pipes:
1104
1105====
1106 mkfifo fast-import-output
1107 frontend <fast-import-output |
1108 git fast-import >fast-import-output
1109====
1110
1111A frontend set up this way can use `progress`, `ls`, and `cat-blob`
1112commands to read information from the import in progress.
1113
1114To avoid deadlock, such frontends must completely consume any
1115pending output from `progress`, `ls`, and `cat-blob` before
1116performing writes to fast-import that might block.
1117
e7e5170f
SP
1118Crash Reports
1119-------------
1120If fast-import is supplied invalid input it will terminate with a
1121non-zero exit status and create a crash report in the top level of
1122the Git repository it was importing into. Crash reports contain
1123a snapshot of the internal fast-import state as well as the most
1124recent commands that lead up to the crash.
1125
1126All recent commands (including stream comments, file changes and
1127progress commands) are shown in the command history within the crash
1128report, but raw file data and commit messages are excluded from the
1129crash report. This exclusion saves space within the report file
1130and reduces the amount of buffering that fast-import must perform
1131during execution.
1132
1133After writing a crash report fast-import will close the current
1134packfile and export the marks table. This allows the frontend
1135developer to inspect the repository state and resume the import from
1136the point where it crashed. The modified branches and tags are not
1137updated during a crash, as the import did not complete successfully.
1138Branch and tag information can be found in the crash report and
1139must be applied manually if the update is needed.
1140
1141An example crash:
1142
1143====
1144 $ cat >in <<END_OF_INPUT
1145 # my very first test commit
1146 commit refs/heads/master
1147 committer Shawn O. Pearce <spearce> 19283 -0400
1148 # who is that guy anyway?
1149 data <<EOF
1150 this is my commit
1151 EOF
1152 M 644 inline .gitignore
1153 data <<EOF
1154 .gitignore
1155 EOF
1156 M 777 inline bob
1157 END_OF_INPUT
1158
b1889c36 1159 $ git fast-import <in
e7e5170f
SP
1160 fatal: Corrupt mode: M 777 inline bob
1161 fast-import: dumping crash report to .git/fast_import_crash_8434
1162
1163 $ cat .git/fast_import_crash_8434
1164 fast-import crash report:
1165 fast-import process: 8434
1166 parent process : 1391
1167 at Sat Sep 1 00:58:12 2007
1168
1169 fatal: Corrupt mode: M 777 inline bob
1170
1171 Most Recent Commands Before Crash
1172 ---------------------------------
1173 # my very first test commit
1174 commit refs/heads/master
1175 committer Shawn O. Pearce <spearce> 19283 -0400
1176 # who is that guy anyway?
1177 data <<EOF
1178 M 644 inline .gitignore
1179 data <<EOF
1180 * M 777 inline bob
1181
1182 Active Branch LRU
1183 -----------------
1184 active_branches = 1 cur, 5 max
1185
1186 pos clock name
1187 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1188 1) 0 refs/heads/master
1189
1190 Inactive Branches
1191 -----------------
1192 refs/heads/master:
1193 status : active loaded dirty
1194 tip commit : 0000000000000000000000000000000000000000
1195 old tree : 0000000000000000000000000000000000000000
1196 cur tree : 0000000000000000000000000000000000000000
1197 commit clock: 0
1198 last pack :
1199
1200
1201 -------------------
1202 END OF CRASH REPORT
1203====
1204
bdd9f424
SP
1205Tips and Tricks
1206---------------
1207The following tips and tricks have been collected from various
882227f1 1208users of fast-import, and are offered here as suggestions.
bdd9f424
SP
1209
1210Use One Mark Per Commit
1211~~~~~~~~~~~~~~~~~~~~~~~
1212When doing a repository conversion, use a unique mark per commit
1213(`mark :<n>`) and supply the \--export-marks option on the command
882227f1 1214line. fast-import will dump a file which lists every mark and the Git
bdd9f424
SP
1215object SHA-1 that corresponds to it. If the frontend can tie
1216the marks back to the source repository, it is easy to verify the
1217accuracy and completeness of the import by comparing each Git
1218commit to the corresponding source revision.
1219
1220Coming from a system such as Perforce or Subversion this should be
882227f1 1221quite simple, as the fast-import mark can also be the Perforce changeset
bdd9f424
SP
1222number or the Subversion revision number.
1223
1224Freely Skip Around Branches
1225~~~~~~~~~~~~~~~~~~~~~~~~~~~
1226Don't bother trying to optimize the frontend to stick to one branch
1227at a time during an import. Although doing so might be slightly
882227f1 1228faster for fast-import, it tends to increase the complexity of the frontend
bdd9f424
SP
1229code considerably.
1230
882227f1 1231The branch LRU builtin to fast-import tends to behave very well, and the
bdd9f424
SP
1232cost of activating an inactive branch is so low that bouncing around
1233between branches has virtually no impact on import performance.
1234
c7346156
SP
1235Handling Renames
1236~~~~~~~~~~~~~~~~
1237When importing a renamed file or directory, simply delete the old
1238name(s) and modify the new name(s) during the corresponding commit.
1239Git performs rename detection after-the-fact, rather than explicitly
1240during a commit.
1241
bdd9f424
SP
1242Use Tag Fixup Branches
1243~~~~~~~~~~~~~~~~~~~~~~
1244Some other SCM systems let the user create a tag from multiple
1245files which are not from the same commit/changeset. Or to create
1246tags which are a subset of the files available in the repository.
1247
1248Importing these tags as-is in Git is impossible without making at
1249least one commit which ``fixes up'' the files to match the content
882227f1 1250of the tag. Use fast-import's `reset` command to reset a dummy branch
bdd9f424
SP
1251outside of your normal branch space to the base commit for the tag,
1252then commit one or more file fixup commits, and finally tag the
1253dummy branch.
1254
1255For example since all normal branches are stored under `refs/heads/`
1256name the tag fixup branch `TAG_FIXUP`. This way it is impossible for
1257the fixup branch used by the importer to have namespace conflicts
1258with real branches imported from the source (the name `TAG_FIXUP`
1259is not `refs/heads/TAG_FIXUP`).
1260
1261When committing fixups, consider using `merge` to connect the
1262commit(s) which are supplying file revisions to the fixup branch.
0b444cdb 1263Doing so will allow tools such as 'git blame' to track
bdd9f424
SP
1264through the real commit history and properly annotate the source
1265files.
1266
882227f1 1267After fast-import terminates the frontend will need to do `rm .git/TAG_FIXUP`
bdd9f424
SP
1268to remove the dummy branch.
1269
1270Import Now, Repack Later
1271~~~~~~~~~~~~~~~~~~~~~~~~
882227f1 1272As soon as fast-import completes the Git repository is completely valid
02783075 1273and ready for use. Typically this takes only a very short time,
bdd9f424
SP
1274even for considerably large projects (100,000+ commits).
1275
1276However repacking the repository is necessary to improve data
1277locality and access performance. It can also take hours on extremely
1278large projects (especially if -f and a large \--window parameter is
1279used). Since repacking is safe to run alongside readers and writers,
1280run the repack in the background and let it finish when it finishes.
1281There is no reason to wait to explore your new Git project!
1282
1283If you choose to wait for the repack, don't try to run benchmarks
882227f1 1284or performance tests until repacking is completed. fast-import outputs
bdd9f424
SP
1285suboptimal packfiles that are simply never seen in real use
1286situations.
1287
1288Repacking Historical Data
1289~~~~~~~~~~~~~~~~~~~~~~~~~
1290If you are repacking very old imported data (e.g. older than the
1291last year), consider expending some extra CPU time and supplying
0b444cdb 1292\--window=50 (or higher) when you run 'git repack'.
bdd9f424
SP
1293This will take longer, but will also produce a smaller packfile.
1294You only need to expend the effort once, and everyone using your
1295project will benefit from the smaller repository.
1296
ac053c02
SP
1297Include Some Progress Messages
1298~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1299Every once in a while have your frontend emit a `progress` message
1300to fast-import. The contents of the messages are entirely free-form,
1301so one suggestion would be to output the current month and year
1302each time the current commit date moves into the next month.
1303Your users will feel better knowing how much of the data stream
1304has been processed.
1305
bdd9f424 1306
6e411d20
SP
1307Packfile Optimization
1308---------------------
882227f1 1309When packing a blob fast-import always attempts to deltify against the last
6e411d20
SP
1310blob written. Unless specifically arranged for by the frontend,
1311this will probably not be a prior version of the same file, so the
1312generated delta will not be the smallest possible. The resulting
1313packfile will be compressed, but will not be optimal.
1314
1315Frontends which have efficient access to all revisions of a
1316single file (for example reading an RCS/CVS ,v file) can choose
1317to supply all revisions of that file as a sequence of consecutive
882227f1 1318`blob` commands. This allows fast-import to deltify the different file
6e411d20
SP
1319revisions against each other, saving space in the final packfile.
1320Marks can be used to later identify individual file revisions during
1321a sequence of `commit` commands.
1322
882227f1
SP
1323The packfile(s) created by fast-import do not encourage good disk access
1324patterns. This is caused by fast-import writing the data in the order
6e411d20
SP
1325it is received on standard input, while Git typically organizes
1326data within packfiles to make the most recent (current tip) data
1327appear before historical data. Git also clusters commits together,
1328speeding up revision traversal through better cache locality.
1329
1330For this reason it is strongly recommended that users repack the
882227f1 1331repository with `git repack -a -d` after fast-import completes, allowing
6e411d20
SP
1332Git to reorganize the packfiles for faster data access. If blob
1333deltas are suboptimal (see above) then also adding the `-f` option
1334to force recomputation of all deltas can significantly reduce the
1335final packfile size (30-50% smaller can be quite typical).
1336
bdd9f424 1337
6e411d20
SP
1338Memory Utilization
1339------------------
882227f1 1340There are a number of factors which affect how much memory fast-import
6e411d20 1341requires to perform an import. Like critical sections of core
02783075
BH
1342Git, fast-import uses its own memory allocators to amortize any overheads
1343associated with malloc. In practice fast-import tends to amortize any
6e411d20
SP
1344malloc overheads to 0, due to its use of large block allocations.
1345
1346per object
1347~~~~~~~~~~
882227f1 1348fast-import maintains an in-memory structure for every object written in
6e411d20
SP
1349this execution. On a 32 bit system the structure is 32 bytes,
1350on a 64 bit system the structure is 40 bytes (due to the larger
1351pointer sizes). Objects in the table are not deallocated until
882227f1 1352fast-import terminates. Importing 2 million objects on a 32 bit system
6e411d20
SP
1353will require approximately 64 MiB of memory.
1354
1355The object table is actually a hashtable keyed on the object name
882227f1 1356(the unique SHA-1). This storage configuration allows fast-import to reuse
6e411d20
SP
1357an existing or already written object and avoid writing duplicates
1358to the output packfile. Duplicate blobs are surprisingly common
1359in an import, typically due to branch merges in the source.
1360
1361per mark
1362~~~~~~~~
1363Marks are stored in a sparse array, using 1 pointer (4 bytes or 8
1364bytes, depending on pointer size) per mark. Although the array
1365is sparse, frontends are still strongly encouraged to use marks
1366between 1 and n, where n is the total number of marks required for
1367this import.
1368
1369per branch
1370~~~~~~~~~~
1371Branches are classified as active and inactive. The memory usage
1372of the two classes is significantly different.
1373
1374Inactive branches are stored in a structure which uses 96 or 120
1375bytes (32 bit or 64 bit systems, respectively), plus the length of
882227f1 1376the branch name (typically under 200 bytes), per branch. fast-import will
6e411d20
SP
1377easily handle as many as 10,000 inactive branches in under 2 MiB
1378of memory.
1379
1380Active branches have the same overhead as inactive branches, but
1381also contain copies of every tree that has been recently modified on
1382that branch. If subtree `include` has not been modified since the
1383branch became active, its contents will not be loaded into memory,
1384but if subtree `src` has been modified by a commit since the branch
1385became active, then its contents will be loaded in memory.
1386
1387As active branches store metadata about the files contained on that
1388branch, their in-memory storage size can grow to a considerable size
1389(see below).
1390
882227f1 1391fast-import automatically moves active branches to inactive status based on
6e411d20
SP
1392a simple least-recently-used algorithm. The LRU chain is updated on
1393each `commit` command. The maximum number of active branches can be
c499d768 1394increased or decreased on the command line with \--active-branches=.
6e411d20
SP
1395
1396per active tree
1397~~~~~~~~~~~~~~~
1398Trees (aka directories) use just 12 bytes of memory on top of the
1399memory required for their entries (see ``per active file'' below).
02783075 1400The cost of a tree is virtually 0, as its overhead amortizes out
6e411d20
SP
1401over the individual file entries.
1402
1403per active file entry
1404~~~~~~~~~~~~~~~~~~~~~
1405Files (and pointers to subtrees) within active trees require 52 or 64
1406bytes (32/64 bit platforms) per entry. To conserve space, file and
1407tree names are pooled in a common string table, allowing the filename
1408``Makefile'' to use just 16 bytes (after including the string header
1409overhead) no matter how many times it occurs within the project.
1410
1411The active branch LRU, when coupled with the filename string pool
882227f1 1412and lazy loading of subtrees, allows fast-import to efficiently import
6e411d20
SP
1413projects with 2,000+ branches and 45,114+ files in a very limited
1414memory footprint (less than 2.7 MiB per active branch).
1415
dc01f59d
JN
1416Signals
1417-------
1418Sending *SIGUSR1* to the 'git fast-import' process ends the current
1419packfile early, simulating a `checkpoint` command. The impatient
1420operator can use this facility to peek at the objects and refs from an
1421import in progress, at the cost of some added running time and worse
1422compression.
6e411d20 1423
6e411d20
SP
1424GIT
1425---
9e1f0a85 1426Part of the linkgit:git[1] suite