1git-fast-import(1) 2================== 3 4NAME 5---- 6git-fast-import - Backend for fast Git data importers 7 8 9SYNOPSIS 10-------- 11[verse] 12frontend | 'git fast-import' [options] 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 19stored there to 'git fast-import'. 20 21fast-import reads a mixed command/data stream from standard input and 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 27The fast-import backend itself can import into an empty repository (one that 28has already been initialized by 'git init') or incrementally 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------- 36--date-format=<fmt>:: 37 Specify the type of dates the frontend will supply to 38 fast-import within `author`, `committer` and `tagger` commands. 39 See ``Date Formats'' below for details about which formats 40 are supported, and their syntax. 41 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 47--max-pack-size=<n>:: 48 Maximum size of each output packfile. 49 The default is unlimited. 50 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 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 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. 81 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 86--relative-marks:: 87 After specifying --relative-marks the paths specified 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 97 --(no-)-relative-marks with the --(import|export)-marks= 98 options. 99 100--cat-blob-fd=<fd>:: 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. 105 106--done:: 107 Terminate with error if there is no `done` command at the 108 end of the stream. 109 This option might be useful for detecting errors that 110 cause the frontend to terminate before it has started to 111 write a stream. 112 113--export-pack-edges=<file>:: 114 After creating a packfile, print a line of data to 115 <file> listing the filename of the packfile and the last 116 commit on each branch that was written to that packfile. 117 This information may be useful after importing projects 118 whose total object set exceeds the 4 GiB packfile limit, 119 as these commits can be used as edge points during calls 120 to 'git pack-objects'. 121 122--quiet:: 123 Disable all non-fatal output, making fast-import silent when it 124 is successful. This option disables the output shown by 125 \--stats. 126 127--stats:: 128 Display some basic statistics about the objects fast-import has 129 created, the packfiles they were stored into, and the 130 memory used by fast-import during this run. Showing this output 131 is currently the default, but can be disabled with \--quiet. 132 133 134Performance 135----------- 136The design of fast-import allows it to import large projects in a minimum 137amount of memory usage and processing time. Assuming the frontend 138is able to keep up with fast-import and feed it a constant stream of data, 139import times for projects holding 10+ years of history and containing 140100,000+ individual commits are generally completed in just 1-2 141hours on quite modest (~$2,000 USD) hardware. 142 143Most bottlenecks appear to be in foreign source data access (the 144source just cannot extract revisions fast enough) or disk IO (fast-import 145writes as fast as the disk will take the data). Imports will run 146faster if the source data is stored on a different drive than the 147destination Git repository (due to less IO contention). 148 149 150Development Cost 151---------------- 152A typical frontend for fast-import tends to weigh in at approximately 200 153lines of Perl/Python/Ruby code. Most developers have been able to 154create working importers in just a couple of hours, even though it 155is their first exposure to fast-import, and sometimes even to Git. This is 156an ideal situation, given that most conversion tools are throw-away 157(use once, and never look back). 158 159 160Parallel Operation 161------------------ 162Like 'git push' or 'git fetch', imports handled by fast-import are safe to 163run alongside parallel `git repack -a -d` or `git gc` invocations, 164or any other Git operation (including 'git prune', as loose objects 165are never used by fast-import). 166 167fast-import does not lock the branch or tag refs it is actively importing. 168After the import, during its ref update phase, fast-import tests each 169existing branch ref to verify the update will be a fast-forward 170update (the commit stored in the ref is contained in the new 171history of the commit to be written). If the update is not a 172fast-forward update, fast-import will skip updating that ref and instead 173prints a warning message. fast-import will always attempt to update all 174branch refs, and does not stop on the first failure. 175 176Branch updates can be forced with \--force, but it's recommended that 177this only be used on an otherwise quiet repository. Using \--force 178is not necessary for an initial import into an empty repository. 179 180 181Technical Discussion 182-------------------- 183fast-import tracks a set of branches in memory. Any branch can be created 184or modified at any point during the import process by sending a 185`commit` command on the input stream. This design allows a frontend 186program to process an unlimited number of branches simultaneously, 187generating commits in the order they are available from the source 188data. It also simplifies the frontend programs considerably. 189 190fast-import does not use or alter the current working directory, or any 191file within it. (It does however update the current Git repository, 192as referenced by `GIT_DIR`.) Therefore an import frontend may use 193the working directory for its own purposes, such as extracting file 194revisions from the foreign source. This ignorance of the working 195directory also allows fast-import to run very quickly, as it does not 196need to perform any costly file update operations when switching 197between branches. 198 199Input Format 200------------ 201With the exception of raw file data (which Git does not interpret) 202the fast-import input format is text (ASCII) based. This text based 203format simplifies development and debugging of frontend programs, 204especially when a higher level language such as Perl, Python or 205Ruby is being used. 206 207fast-import is very strict about its input. Where we say SP below we mean 208*exactly* one space. Likewise LF means one (and only one) linefeed 209and HT one (and only one) horizontal tab. 210Supplying additional whitespace characters will cause unexpected 211results, such as branch names or file names with leading or trailing 212spaces in their name, or early termination of fast-import when it encounters 213unexpected input. 214 215Stream Comments 216~~~~~~~~~~~~~~~ 217To aid in debugging frontends fast-import ignores any line that 218begins with `#` (ASCII pound/hash) up to and including the line 219ending `LF`. A comment line may contain any sequence of bytes 220that does not contain an LF and therefore may be used to include 221any detailed debugging information that might be specific to the 222frontend and useful when inspecting a fast-import data stream. 223 224Date Formats 225~~~~~~~~~~~~ 226The following date formats are supported. A frontend should select 227the format it will use for this import by passing the format name 228in the \--date-format=<fmt> command line option. 229 230`raw`:: 231 This is the Git native format and is `<time> SP <offutc>`. 232 It is also fast-import's default format, if \--date-format was 233 not specified. 234+ 235The time of the event is specified by `<time>` as the number of 236seconds since the UNIX epoch (midnight, Jan 1, 1970, UTC) and is 237written as an ASCII decimal integer. 238+ 239The local offset is specified by `<offutc>` as a positive or negative 240offset from UTC. For example EST (which is 5 hours behind UTC) 241would be expressed in `<tz>` by ``-0500'' while UTC is ``+0000''. 242The local offset does not affect `<time>`; it is used only as an 243advisement to help formatting routines display the timestamp. 244+ 245If the local offset is not available in the source material, use 246``+0000'', or the most common local offset. For example many 247organizations have a CVS repository which has only ever been accessed 248by users who are located in the same location and timezone. In this 249case a reasonable offset from UTC could be assumed. 250+ 251Unlike the `rfc2822` format, this format is very strict. Any 252variation in formatting will cause fast-import to reject the value. 253 254`rfc2822`:: 255 This is the standard email format as described by RFC 2822. 256+ 257An example value is ``Tue Feb 6 11:22:18 2007 -0500''. The Git 258parser is accurate, but a little on the lenient side. It is the 259same parser used by 'git am' when applying patches 260received from email. 261+ 262Some malformed strings may be accepted as valid dates. In some of 263these cases Git will still be able to obtain the correct date from 264the malformed string. There are also some types of malformed 265strings which Git will parse wrong, and yet consider valid. 266Seriously malformed strings will be rejected. 267+ 268Unlike the `raw` format above, the timezone/UTC offset information 269contained in an RFC 2822 date string is used to adjust the date 270value to UTC prior to storage. Therefore it is important that 271this information be as accurate as possible. 272+ 273If the source material uses RFC 2822 style dates, 274the frontend should let fast-import handle the parsing and conversion 275(rather than attempting to do it itself) as the Git parser has 276been well tested in the wild. 277+ 278Frontends should prefer the `raw` format if the source material 279already uses UNIX-epoch format, can be coaxed to give dates in that 280format, or its format is easily convertible to it, as there is no 281ambiguity in parsing. 282 283`now`:: 284 Always use the current time and timezone. The literal 285 `now` must always be supplied for `<when>`. 286+ 287This is a toy format. The current time and timezone of this system 288is always copied into the identity string at the time it is being 289created by fast-import. There is no way to specify a different time or 290timezone. 291+ 292This particular format is supplied as it's short to implement and 293may be useful to a process that wants to create a new commit 294right now, without needing to use a working directory or 295'git update-index'. 296+ 297If separate `author` and `committer` commands are used in a `commit` 298the timestamps may not match, as the system clock will be polled 299twice (once for each command). The only way to ensure that both 300author and committer identity information has the same timestamp 301is to omit `author` (thus copying from `committer`) or to use a 302date format other than `now`. 303 304Commands 305~~~~~~~~ 306fast-import accepts several commands to update the current repository 307and control the current import process. More detailed discussion 308(with examples) of each command follows later. 309 310`commit`:: 311 Creates a new branch or updates an existing branch by 312 creating a new commit and updating the branch to point at 313 the newly created commit. 314 315`tag`:: 316 Creates an annotated tag object from an existing commit or 317 branch. Lightweight tags are not supported by this command, 318 as they are not recommended for recording meaningful points 319 in time. 320 321`reset`:: 322 Reset an existing branch (or a new branch) to a specific 323 revision. This command must be used to change a branch to 324 a specific revision without making a commit on it. 325 326`blob`:: 327 Convert raw file data into a blob, for future use in a 328 `commit` command. This command is optional and is not 329 needed to perform an import. 330 331`checkpoint`:: 332 Forces fast-import to close the current packfile, generate its 333 unique SHA-1 checksum and index, and start a new packfile. 334 This command is optional and is not needed to perform 335 an import. 336 337`progress`:: 338 Causes fast-import to echo the entire line to its own 339 standard output. This command is optional and is not needed 340 to perform an import. 341 342`done`:: 343 Marks the end of the stream. This command is optional 344 unless the `done` feature was requested using the 345 `--done` command line option or `feature done` command. 346 347`cat-blob`:: 348 Causes fast-import to print a blob in 'cat-file --batch' 349 format to the file descriptor set with `--cat-blob-fd` or 350 `stdout` if unspecified. 351 352`ls`:: 353 Causes fast-import to print a line describing a directory 354 entry in 'ls-tree' format to the file descriptor set with 355 `--cat-blob-fd` or `stdout` if unspecified. 356 357`feature`:: 358 Require that fast-import supports the specified feature, or 359 abort if it does not. 360 361`option`:: 362 Specify any of the options listed under OPTIONS that do not 363 change stream semantic to suit the frontend's needs. This 364 command is optional and is not needed to perform an import. 365 366`commit` 367~~~~~~~~ 368Create or update a branch with a new commit, recording one logical 369change to the project. 370 371.... 372 'commit' SP <ref> LF 373 mark? 374 ('author' (SP <name>)? SP LT <email> GT SP <when> LF)? 375 'committer' (SP <name>)? SP LT <email> GT SP <when> LF 376 data 377 ('from' SP <committish> LF)? 378 ('merge' SP <committish> LF)? 379 (filemodify | filedelete | filecopy | filerename | filedeleteall | notemodify)* 380 LF? 381.... 382 383where `<ref>` is the name of the branch to make the commit on. 384Typically branch names are prefixed with `refs/heads/` in 385Git, so importing the CVS branch symbol `RELENG-1_0` would use 386`refs/heads/RELENG-1_0` for the value of `<ref>`. The value of 387`<ref>` must be a valid refname in Git. As `LF` is not valid in 388a Git refname, no quoting or escaping syntax is supported here. 389 390A `mark` command may optionally appear, requesting fast-import to save a 391reference to the newly created commit for future use by the frontend 392(see below for format). It is very common for frontends to mark 393every commit they create, thereby allowing future branch creation 394from any imported commit. 395 396The `data` command following `committer` must supply the commit 397message (see below for `data` command syntax). To import an empty 398commit message use a 0 length data. Commit messages are free-form 399and are not interpreted by Git. Currently they must be encoded in 400UTF-8, as fast-import does not permit other encodings to be specified. 401 402Zero or more `filemodify`, `filedelete`, `filecopy`, `filerename`, 403`filedeleteall` and `notemodify` commands 404may be included to update the contents of the branch prior to 405creating the commit. These commands may be supplied in any order. 406However it is recommended that a `filedeleteall` command precede 407all `filemodify`, `filecopy`, `filerename` and `notemodify` commands in 408the same commit, as `filedeleteall` wipes the branch clean (see below). 409 410The `LF` after the command is optional (it used to be required). 411 412`author` 413^^^^^^^^ 414An `author` command may optionally appear, if the author information 415might differ from the committer information. If `author` is omitted 416then fast-import will automatically use the committer's information for 417the author portion of the commit. See below for a description of 418the fields in `author`, as they are identical to `committer`. 419 420`committer` 421^^^^^^^^^^^ 422The `committer` command indicates who made this commit, and when 423they made it. 424 425Here `<name>` is the person's display name (for example 426``Com M Itter'') and `<email>` is the person's email address 427(``\cm@example.com''). `LT` and `GT` are the literal less-than (\x3c) 428and greater-than (\x3e) symbols. These are required to delimit 429the email address from the other fields in the line. Note that 430`<name>` and `<email>` are free-form and may contain any sequence 431of bytes, except `LT`, `GT` and `LF`. `<name>` is typically UTF-8 encoded. 432 433The time of the change is specified by `<when>` using the date format 434that was selected by the \--date-format=<fmt> command line option. 435See ``Date Formats'' above for the set of supported formats, and 436their syntax. 437 438`from` 439^^^^^^ 440The `from` command is used to specify the commit to initialize 441this branch from. This revision will be the first ancestor of the 442new commit. The state of the tree built at this commit will begin 443with the state at the `from` commit, and be altered by the content 444modifications in this commit. 445 446Omitting the `from` command in the first commit of a new branch 447will cause fast-import to create that commit with no ancestor. This 448tends to be desired only for the initial commit of a project. 449If the frontend creates all files from scratch when making a new 450branch, a `merge` command may be used instead of `from` to start 451the commit with an empty tree. 452Omitting the `from` command on existing branches is usually desired, 453as the current commit on that branch is automatically assumed to 454be the first ancestor of the new commit. 455 456As `LF` is not valid in a Git refname or SHA-1 expression, no 457quoting or escaping syntax is supported within `<committish>`. 458 459Here `<committish>` is any of the following: 460 461* The name of an existing branch already in fast-import's internal branch 462 table. If fast-import doesn't know the name, it's treated as a SHA-1 463 expression. 464 465* A mark reference, `:<idnum>`, where `<idnum>` is the mark number. 466+ 467The reason fast-import uses `:` to denote a mark reference is this character 468is not legal in a Git branch name. The leading `:` makes it easy 469to distinguish between the mark 42 (`:42`) and the branch 42 (`42` 470or `refs/heads/42`), or an abbreviated SHA-1 which happened to 471consist only of base-10 digits. 472+ 473Marks must be declared (via `mark`) before they can be used. 474 475* A complete 40 byte or abbreviated commit SHA-1 in hex. 476 477* Any valid Git SHA-1 expression that resolves to a commit. See 478 ``SPECIFYING REVISIONS'' in linkgit:gitrevisions[7] for details. 479 480The special case of restarting an incremental import from the 481current branch value should be written as: 482---- 483 from refs/heads/branch^0 484---- 485The `^0` suffix is necessary as fast-import does not permit a branch to 486start from itself, and the branch is created in memory before the 487`from` command is even read from the input. Adding `^0` will force 488fast-import to resolve the commit through Git's revision parsing library, 489rather than its internal branch table, thereby loading in the 490existing value of the branch. 491 492`merge` 493^^^^^^^ 494Includes one additional ancestor commit. The additional ancestry 495link does not change the way the tree state is built at this commit. 496If the `from` command is 497omitted when creating a new branch, the first `merge` commit will be 498the first ancestor of the current commit, and the branch will start 499out with no files. An unlimited number of `merge` commands per 500commit are permitted by fast-import, thereby establishing an n-way merge. 501However Git's other tools never create commits with more than 15 502additional ancestors (forming a 16-way merge). For this reason 503it is suggested that frontends do not use more than 15 `merge` 504commands per commit; 16, if starting a new, empty branch. 505 506Here `<committish>` is any of the commit specification expressions 507also accepted by `from` (see above). 508 509`filemodify` 510^^^^^^^^^^^^ 511Included in a `commit` command to add a new file or change the 512content of an existing file. This command has two different means 513of specifying the content of the file. 514 515External data format:: 516 The data content for the file was already supplied by a prior 517 `blob` command. The frontend just needs to connect it. 518+ 519.... 520 'M' SP <mode> SP <dataref> SP <path> LF 521.... 522+ 523Here usually `<dataref>` must be either a mark reference (`:<idnum>`) 524set by a prior `blob` command, or a full 40-byte SHA-1 of an 525existing Git blob object. If `<mode>` is `040000`` then 526`<dataref>` must be the full 40-byte SHA-1 of an existing 527Git tree object or a mark reference set with `--import-marks`. 528 529Inline data format:: 530 The data content for the file has not been supplied yet. 531 The frontend wants to supply it as part of this modify 532 command. 533+ 534.... 535 'M' SP <mode> SP 'inline' SP <path> LF 536 data 537.... 538+ 539See below for a detailed description of the `data` command. 540 541In both formats `<mode>` is the type of file entry, specified 542in octal. Git only supports the following modes: 543 544* `100644` or `644`: A normal (not-executable) file. The majority 545 of files in most projects use this mode. If in doubt, this is 546 what you want. 547* `100755` or `755`: A normal, but executable, file. 548* `120000`: A symlink, the content of the file will be the link target. 549* `160000`: A gitlink, SHA-1 of the object refers to a commit in 550 another repository. Git links can only be specified by SHA or through 551 a commit mark. They are used to implement submodules. 552* `040000`: A subdirectory. Subdirectories can only be specified by 553 SHA or through a tree mark set with `--import-marks`. 554 555In both formats `<path>` is the complete path of the file to be added 556(if not already existing) or modified (if already existing). 557 558A `<path>` string must use UNIX-style directory separators (forward 559slash `/`), may contain any byte other than `LF`, and must not 560start with double quote (`"`). 561 562A path can use C-style string quoting; this is accepted in all cases 563and mandatory if the filename starts with double quote or contains 564`LF`. In C-style quoting, the complete name should be surrounded with 565double quotes, and any `LF`, backslash, or double quote characters 566must be escaped by preceding them with a backslash (e.g., 567`"path/with\n, \\ and \" in it"`). 568 569The value of `<path>` must be in canonical form. That is it must not: 570 571* contain an empty directory component (e.g. `foo//bar` is invalid), 572* end with a directory separator (e.g. `foo/` is invalid), 573* start with a directory separator (e.g. `/foo` is invalid), 574* contain the special component `.` or `..` (e.g. `foo/./bar` and 575 `foo/../bar` are invalid). 576 577The root of the tree can be represented by an empty string as `<path>`. 578 579It is recommended that `<path>` always be encoded using UTF-8. 580 581`filedelete` 582^^^^^^^^^^^^ 583Included in a `commit` command to remove a file or recursively 584delete an entire directory from the branch. If the file or directory 585removal makes its parent directory empty, the parent directory will 586be automatically removed too. This cascades up the tree until the 587first non-empty directory or the root is reached. 588 589.... 590 'D' SP <path> LF 591.... 592 593here `<path>` is the complete path of the file or subdirectory to 594be removed from the branch. 595See `filemodify` above for a detailed description of `<path>`. 596 597`filecopy` 598^^^^^^^^^^^^ 599Recursively copies an existing file or subdirectory to a different 600location within the branch. The existing file or directory must 601exist. If the destination exists it will be completely replaced 602by the content copied from the source. 603 604.... 605 'C' SP <path> SP <path> LF 606.... 607 608here the first `<path>` is the source location and the second 609`<path>` is the destination. See `filemodify` above for a detailed 610description of what `<path>` may look like. To use a source path 611that contains SP the path must be quoted. 612 613A `filecopy` command takes effect immediately. Once the source 614location has been copied to the destination any future commands 615applied to the source location will not impact the destination of 616the copy. 617 618`filerename` 619^^^^^^^^^^^^ 620Renames an existing file or subdirectory to a different location 621within the branch. The existing file or directory must exist. If 622the destination exists it will be replaced by the source directory. 623 624.... 625 'R' SP <path> SP <path> LF 626.... 627 628here the first `<path>` is the source location and the second 629`<path>` is the destination. See `filemodify` above for a detailed 630description of what `<path>` may look like. To use a source path 631that contains SP the path must be quoted. 632 633A `filerename` command takes effect immediately. Once the source 634location has been renamed to the destination any future commands 635applied to the source location will create new files there and not 636impact the destination of the rename. 637 638Note that a `filerename` is the same as a `filecopy` followed by a 639`filedelete` of the source location. There is a slight performance 640advantage to using `filerename`, but the advantage is so small 641that it is never worth trying to convert a delete/add pair in 642source material into a rename for fast-import. This `filerename` 643command is provided just to simplify frontends that already have 644rename information and don't want bother with decomposing it into a 645`filecopy` followed by a `filedelete`. 646 647`filedeleteall` 648^^^^^^^^^^^^^^^ 649Included in a `commit` command to remove all files (and also all 650directories) from the branch. This command resets the internal 651branch structure to have no files in it, allowing the frontend 652to subsequently add all interesting files from scratch. 653 654.... 655 'deleteall' LF 656.... 657 658This command is extremely useful if the frontend does not know 659(or does not care to know) what files are currently on the branch, 660and therefore cannot generate the proper `filedelete` commands to 661update the content. 662 663Issuing a `filedeleteall` followed by the needed `filemodify` 664commands to set the correct content will produce the same results 665as sending only the needed `filemodify` and `filedelete` commands. 666The `filedeleteall` approach may however require fast-import to use slightly 667more memory per active branch (less than 1 MiB for even most large 668projects); so frontends that can easily obtain only the affected 669paths for a commit are encouraged to do so. 670 671`notemodify` 672^^^^^^^^^^^^ 673Included in a `commit` `<notes_ref>` command to add a new note 674annotating a `<committish>` or change this annotation contents. 675Internally it is similar to filemodify 100644 on `<committish>` 676path (maybe split into subdirectories). It's not advised to 677use any other commands to write to the `<notes_ref>` tree except 678`filedeleteall` to delete all existing notes in this tree. 679This command has two different means of specifying the content 680of the note. 681 682External data format:: 683 The data content for the note was already supplied by a prior 684 `blob` command. The frontend just needs to connect it to the 685 commit that is to be annotated. 686+ 687.... 688 'N' SP <dataref> SP <committish> LF 689.... 690+ 691Here `<dataref>` can be either a mark reference (`:<idnum>`) 692set by a prior `blob` command, or a full 40-byte SHA-1 of an 693existing Git blob object. 694 695Inline data format:: 696 The data content for the note has not been supplied yet. 697 The frontend wants to supply it as part of this modify 698 command. 699+ 700.... 701 'N' SP 'inline' SP <committish> LF 702 data 703.... 704+ 705See below for a detailed description of the `data` command. 706 707In both formats `<committish>` is any of the commit specification 708expressions also accepted by `from` (see above). 709 710`mark` 711~~~~~~ 712Arranges for fast-import to save a reference to the current object, allowing 713the frontend to recall this object at a future point in time, without 714knowing its SHA-1. Here the current object is the object creation 715command the `mark` command appears within. This can be `commit`, 716`tag`, and `blob`, but `commit` is the most common usage. 717 718.... 719 'mark' SP ':' <idnum> LF 720.... 721 722where `<idnum>` is the number assigned by the frontend to this mark. 723The value of `<idnum>` is expressed as an ASCII decimal integer. 724The value 0 is reserved and cannot be used as 725a mark. Only values greater than or equal to 1 may be used as marks. 726 727New marks are created automatically. Existing marks can be moved 728to another object simply by reusing the same `<idnum>` in another 729`mark` command. 730 731`tag` 732~~~~~ 733Creates an annotated tag referring to a specific commit. To create 734lightweight (non-annotated) tags see the `reset` command below. 735 736.... 737 'tag' SP <name> LF 738 'from' SP <committish> LF 739 'tagger' (SP <name>)? SP LT <email> GT SP <when> LF 740 data 741.... 742 743where `<name>` is the name of the tag to create. 744 745Tag names are automatically prefixed with `refs/tags/` when stored 746in Git, so importing the CVS branch symbol `RELENG-1_0-FINAL` would 747use just `RELENG-1_0-FINAL` for `<name>`, and fast-import will write the 748corresponding ref as `refs/tags/RELENG-1_0-FINAL`. 749 750The value of `<name>` must be a valid refname in Git and therefore 751may contain forward slashes. As `LF` is not valid in a Git refname, 752no quoting or escaping syntax is supported here. 753 754The `from` command is the same as in the `commit` command; see 755above for details. 756 757The `tagger` command uses the same format as `committer` within 758`commit`; again see above for details. 759 760The `data` command following `tagger` must supply the annotated tag 761message (see below for `data` command syntax). To import an empty 762tag message use a 0 length data. Tag messages are free-form and are 763not interpreted by Git. Currently they must be encoded in UTF-8, 764as fast-import does not permit other encodings to be specified. 765 766Signing annotated tags during import from within fast-import is not 767supported. Trying to include your own PGP/GPG signature is not 768recommended, as the frontend does not (easily) have access to the 769complete set of bytes which normally goes into such a signature. 770If signing is required, create lightweight tags from within fast-import with 771`reset`, then create the annotated versions of those tags offline 772with the standard 'git tag' process. 773 774`reset` 775~~~~~~~ 776Creates (or recreates) the named branch, optionally starting from 777a specific revision. The reset command allows a frontend to issue 778a new `from` command for an existing branch, or to create a new 779branch from an existing commit without creating a new commit. 780 781.... 782 'reset' SP <ref> LF 783 ('from' SP <committish> LF)? 784 LF? 785.... 786 787For a detailed description of `<ref>` and `<committish>` see above 788under `commit` and `from`. 789 790The `LF` after the command is optional (it used to be required). 791 792The `reset` command can also be used to create lightweight 793(non-annotated) tags. For example: 794 795==== 796 reset refs/tags/938 797 from :938 798==== 799 800would create the lightweight tag `refs/tags/938` referring to 801whatever commit mark `:938` references. 802 803`blob` 804~~~~~~ 805Requests writing one file revision to the packfile. The revision 806is not connected to any commit; this connection must be formed in 807a subsequent `commit` command by referencing the blob through an 808assigned mark. 809 810.... 811 'blob' LF 812 mark? 813 data 814.... 815 816The mark command is optional here as some frontends have chosen 817to generate the Git SHA-1 for the blob on their own, and feed that 818directly to `commit`. This is typically more work than it's worth 819however, as marks are inexpensive to store and easy to use. 820 821`data` 822~~~~~~ 823Supplies raw data (for use as blob/file content, commit messages, or 824annotated tag messages) to fast-import. Data can be supplied using an exact 825byte count or delimited with a terminating line. Real frontends 826intended for production-quality conversions should always use the 827exact byte count format, as it is more robust and performs better. 828The delimited format is intended primarily for testing fast-import. 829 830Comment lines appearing within the `<raw>` part of `data` commands 831are always taken to be part of the body of the data and are therefore 832never ignored by fast-import. This makes it safe to import any 833file/message content whose lines might start with `#`. 834 835Exact byte count format:: 836 The frontend must specify the number of bytes of data. 837+ 838.... 839 'data' SP <count> LF 840 <raw> LF? 841.... 842+ 843where `<count>` is the exact number of bytes appearing within 844`<raw>`. The value of `<count>` is expressed as an ASCII decimal 845integer. The `LF` on either side of `<raw>` is not 846included in `<count>` and will not be included in the imported data. 847+ 848The `LF` after `<raw>` is optional (it used to be required) but 849recommended. Always including it makes debugging a fast-import 850stream easier as the next command always starts in column 0 851of the next line, even if `<raw>` did not end with an `LF`. 852 853Delimited format:: 854 A delimiter string is used to mark the end of the data. 855 fast-import will compute the length by searching for the delimiter. 856 This format is primarily useful for testing and is not 857 recommended for real data. 858+ 859.... 860 'data' SP '<<' <delim> LF 861 <raw> LF 862 <delim> LF 863 LF? 864.... 865+ 866where `<delim>` is the chosen delimiter string. The string `<delim>` 867must not appear on a line by itself within `<raw>`, as otherwise 868fast-import will think the data ends earlier than it really does. The `LF` 869immediately trailing `<raw>` is part of `<raw>`. This is one of 870the limitations of the delimited format, it is impossible to supply 871a data chunk which does not have an LF as its last byte. 872+ 873The `LF` after `<delim> LF` is optional (it used to be required). 874 875`checkpoint` 876~~~~~~~~~~~~ 877Forces fast-import to close the current packfile, start a new one, and to 878save out all current branch refs, tags and marks. 879 880.... 881 'checkpoint' LF 882 LF? 883.... 884 885Note that fast-import automatically switches packfiles when the current 886packfile reaches \--max-pack-size, or 4 GiB, whichever limit is 887smaller. During an automatic packfile switch fast-import does not update 888the branch refs, tags or marks. 889 890As a `checkpoint` can require a significant amount of CPU time and 891disk IO (to compute the overall pack SHA-1 checksum, generate the 892corresponding index file, and update the refs) it can easily take 893several minutes for a single `checkpoint` command to complete. 894 895Frontends may choose to issue checkpoints during extremely large 896and long running imports, or when they need to allow another Git 897process access to a branch. However given that a 30 GiB Subversion 898repository can be loaded into Git through fast-import in about 3 hours, 899explicit checkpointing may not be necessary. 900 901The `LF` after the command is optional (it used to be required). 902 903`progress` 904~~~~~~~~~~ 905Causes fast-import to print the entire `progress` line unmodified to 906its standard output channel (file descriptor 1) when the command is 907processed from the input stream. The command otherwise has no impact 908on the current import, or on any of fast-import's internal state. 909 910.... 911 'progress' SP <any> LF 912 LF? 913.... 914 915The `<any>` part of the command may contain any sequence of bytes 916that does not contain `LF`. The `LF` after the command is optional. 917Callers may wish to process the output through a tool such as sed to 918remove the leading part of the line, for example: 919 920==== 921 frontend | git fast-import | sed 's/^progress //' 922==== 923 924Placing a `progress` command immediately after a `checkpoint` will 925inform the reader when the `checkpoint` has been completed and it 926can safely access the refs that fast-import updated. 927 928`cat-blob` 929~~~~~~~~~~ 930Causes fast-import to print a blob to a file descriptor previously 931arranged with the `--cat-blob-fd` argument. The command otherwise 932has no impact on the current import; its main purpose is to 933retrieve blobs that may be in fast-import's memory but not 934accessible from the target repository. 935 936.... 937 'cat-blob' SP <dataref> LF 938.... 939 940The `<dataref>` can be either a mark reference (`:<idnum>`) 941set previously or a full 40-byte SHA-1 of a Git blob, preexisting or 942ready to be written. 943 944Output uses the same format as `git cat-file --batch`: 945 946==== 947 <sha1> SP 'blob' SP <size> LF 948 <contents> LF 949==== 950 951This command can be used anywhere in the stream that comments are 952accepted. In particular, the `cat-blob` command can be used in the 953middle of a commit but not in the middle of a `data` command. 954 955See ``Responses To Commands'' below for details about how to read 956this output safely. 957 958`ls` 959~~~~ 960Prints information about the object at a path to a file descriptor 961previously arranged with the `--cat-blob-fd` argument. This allows 962printing a blob from the active commit (with `cat-blob`) or copying a 963blob or tree from a previous commit for use in the current one (with 964`filemodify`). 965 966The `ls` command can be used anywhere in the stream that comments are 967accepted, including the middle of a commit. 968 969Reading from the active commit:: 970 This form can only be used in the middle of a `commit`. 971 The path names a directory entry within fast-import's 972 active commit. The path must be quoted in this case. 973+ 974.... 975 'ls' SP <path> LF 976.... 977 978Reading from a named tree:: 979 The `<dataref>` can be a mark reference (`:<idnum>`) or the 980 full 40-byte SHA-1 of a Git tag, commit, or tree object, 981 preexisting or waiting to be written. 982 The path is relative to the top level of the tree 983 named by `<dataref>`. 984+ 985.... 986 'ls' SP <dataref> SP <path> LF 987.... 988 989See `filemodify` above for a detailed description of `<path>`. 990 991Output uses the same format as `git ls-tree <tree> -- <path>`: 992 993==== 994 <mode> SP ('blob' | 'tree' | 'commit') SP <dataref> HT <path> LF 995==== 996 997The <dataref> represents the blob, tree, or commit object at <path> 998and can be used in later 'cat-blob', 'filemodify', or 'ls' commands. 9991000If there is no file or subtree at that path, 'git fast-import' will1001instead report10021003====1004 missing SP <path> LF1005====10061007See ``Responses To Commands'' below for details about how to read1008this output safely.10091010`feature`1011~~~~~~~~~1012Require that fast-import supports the specified feature, or abort if1013it does not.10141015....1016 'feature' SP <feature> ('=' <argument>)? LF1017....10181019The <feature> part of the command may be any one of the following:10201021date-format::1022export-marks::1023relative-marks::1024no-relative-marks::1025force::1026 Act as though the corresponding command-line option with1027 a leading '--' was passed on the command line1028 (see OPTIONS, above).10291030import-marks::1031import-marks-if-exists::1032 Like --import-marks except in two respects: first, only one1033 "feature import-marks" or "feature import-marks-if-exists"1034 command is allowed per stream; second, an --import-marks=1035 or --import-marks-if-exists command-line option overrides1036 any of these "feature" commands in the stream; third,1037 "feature import-marks-if-exists" like a corresponding1038 command-line option silently skips a nonexistent file.10391040cat-blob::1041ls::1042 Require that the backend support the 'cat-blob' or 'ls' command.1043 Versions of fast-import not supporting the specified command1044 will exit with a message indicating so.1045 This lets the import error out early with a clear message,1046 rather than wasting time on the early part of an import1047 before the unsupported command is detected.10481049notes::1050 Require that the backend support the 'notemodify' (N)1051 subcommand to the 'commit' command.1052 Versions of fast-import not supporting notes will exit1053 with a message indicating so.10541055done::1056 Error out if the stream ends without a 'done' command.1057 Without this feature, errors causing the frontend to end1058 abruptly at a convenient point in the stream can go1059 undetected. This may occur, for example, if an import1060 front end dies in mid-operation without emitting SIGTERM1061 or SIGKILL at its subordinate git fast-import instance.10621063`option`1064~~~~~~~~1065Processes the specified option so that git fast-import behaves in a1066way that suits the frontend's needs.1067Note that options specified by the frontend are overridden by any1068options the user may specify to git fast-import itself.10691070....1071 'option' SP <option> LF1072....10731074The `<option>` part of the command may contain any of the options1075listed in the OPTIONS section that do not change import semantics,1076without the leading '--' and is treated in the same way.10771078Option commands must be the first commands on the input (not counting1079feature commands), to give an option command after any non-option1080command is an error.10811082The following commandline options change import semantics and may therefore1083not be passed as option:10841085* date-format1086* import-marks1087* export-marks1088* cat-blob-fd1089* force10901091`done`1092~~~~~~1093If the `done` feature is not in use, treated as if EOF was read.1094This can be used to tell fast-import to finish early.10951096If the `--done` command line option or `feature done` command is1097in use, the `done` command is mandatory and marks the end of the1098stream.10991100Responses To Commands1101---------------------1102New objects written by fast-import are not available immediately.1103Most fast-import commands have no visible effect until the next1104checkpoint (or completion). The frontend can send commands to1105fill fast-import's input pipe without worrying about how quickly1106they will take effect, which improves performance by simplifying1107scheduling.11081109For some frontends, though, it is useful to be able to read back1110data from the current repository as it is being updated (for1111example when the source material describes objects in terms of1112patches to be applied to previously imported objects). This can1113be accomplished by connecting the frontend and fast-import via1114bidirectional pipes:11151116====1117 mkfifo fast-import-output1118 frontend <fast-import-output |1119 git fast-import >fast-import-output1120====11211122A frontend set up this way can use `progress`, `ls`, and `cat-blob`1123commands to read information from the import in progress.11241125To avoid deadlock, such frontends must completely consume any1126pending output from `progress`, `ls`, and `cat-blob` before1127performing writes to fast-import that might block.11281129Crash Reports1130-------------1131If fast-import is supplied invalid input it will terminate with a1132non-zero exit status and create a crash report in the top level of1133the Git repository it was importing into. Crash reports contain1134a snapshot of the internal fast-import state as well as the most1135recent commands that lead up to the crash.11361137All recent commands (including stream comments, file changes and1138progress commands) are shown in the command history within the crash1139report, but raw file data and commit messages are excluded from the1140crash report. This exclusion saves space within the report file1141and reduces the amount of buffering that fast-import must perform1142during execution.11431144After writing a crash report fast-import will close the current1145packfile and export the marks table. This allows the frontend1146developer to inspect the repository state and resume the import from1147the point where it crashed. The modified branches and tags are not1148updated during a crash, as the import did not complete successfully.1149Branch and tag information can be found in the crash report and1150must be applied manually if the update is needed.11511152An example crash:11531154====1155 $ cat >in <<END_OF_INPUT1156 # my very first test commit1157 commit refs/heads/master1158 committer Shawn O. Pearce <spearce> 19283 -04001159 # who is that guy anyway?1160 data <<EOF1161 this is my commit1162 EOF1163 M 644 inline .gitignore1164 data <<EOF1165 .gitignore1166 EOF1167 M 777 inline bob1168 END_OF_INPUT11691170 $ git fast-import <in1171 fatal: Corrupt mode: M 777 inline bob1172 fast-import: dumping crash report to .git/fast_import_crash_843411731174 $ cat .git/fast_import_crash_84341175 fast-import crash report:1176 fast-import process: 84341177 parent process : 13911178 at Sat Sep 1 00:58:12 200711791180 fatal: Corrupt mode: M 777 inline bob11811182 Most Recent Commands Before Crash1183 ---------------------------------1184 # my very first test commit1185 commit refs/heads/master1186 committer Shawn O. Pearce <spearce> 19283 -04001187 # who is that guy anyway?1188 data <<EOF1189 M 644 inline .gitignore1190 data <<EOF1191 * M 777 inline bob11921193 Active Branch LRU1194 -----------------1195 active_branches = 1 cur, 5 max11961197 pos clock name1198 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1199 1) 0 refs/heads/master12001201 Inactive Branches1202 -----------------1203 refs/heads/master:1204 status : active loaded dirty1205 tip commit : 00000000000000000000000000000000000000001206 old tree : 00000000000000000000000000000000000000001207 cur tree : 00000000000000000000000000000000000000001208 commit clock: 01209 last pack :121012111212 -------------------1213 END OF CRASH REPORT1214====12151216Tips and Tricks1217---------------1218The following tips and tricks have been collected from various1219users of fast-import, and are offered here as suggestions.12201221Use One Mark Per Commit1222~~~~~~~~~~~~~~~~~~~~~~~1223When doing a repository conversion, use a unique mark per commit1224(`mark :<n>`) and supply the \--export-marks option on the command1225line. fast-import will dump a file which lists every mark and the Git1226object SHA-1 that corresponds to it. If the frontend can tie1227the marks back to the source repository, it is easy to verify the1228accuracy and completeness of the import by comparing each Git1229commit to the corresponding source revision.12301231Coming from a system such as Perforce or Subversion this should be1232quite simple, as the fast-import mark can also be the Perforce changeset1233number or the Subversion revision number.12341235Freely Skip Around Branches1236~~~~~~~~~~~~~~~~~~~~~~~~~~~1237Don't bother trying to optimize the frontend to stick to one branch1238at a time during an import. Although doing so might be slightly1239faster for fast-import, it tends to increase the complexity of the frontend1240code considerably.12411242The branch LRU builtin to fast-import tends to behave very well, and the1243cost of activating an inactive branch is so low that bouncing around1244between branches has virtually no impact on import performance.12451246Handling Renames1247~~~~~~~~~~~~~~~~1248When importing a renamed file or directory, simply delete the old1249name(s) and modify the new name(s) during the corresponding commit.1250Git performs rename detection after-the-fact, rather than explicitly1251during a commit.12521253Use Tag Fixup Branches1254~~~~~~~~~~~~~~~~~~~~~~1255Some other SCM systems let the user create a tag from multiple1256files which are not from the same commit/changeset. Or to create1257tags which are a subset of the files available in the repository.12581259Importing these tags as-is in Git is impossible without making at1260least one commit which ``fixes up'' the files to match the content1261of the tag. Use fast-import's `reset` command to reset a dummy branch1262outside of your normal branch space to the base commit for the tag,1263then commit one or more file fixup commits, and finally tag the1264dummy branch.12651266For example since all normal branches are stored under `refs/heads/`1267name the tag fixup branch `TAG_FIXUP`. This way it is impossible for1268the fixup branch used by the importer to have namespace conflicts1269with real branches imported from the source (the name `TAG_FIXUP`1270is not `refs/heads/TAG_FIXUP`).12711272When committing fixups, consider using `merge` to connect the1273commit(s) which are supplying file revisions to the fixup branch.1274Doing so will allow tools such as 'git blame' to track1275through the real commit history and properly annotate the source1276files.12771278After fast-import terminates the frontend will need to do `rm .git/TAG_FIXUP`1279to remove the dummy branch.12801281Import Now, Repack Later1282~~~~~~~~~~~~~~~~~~~~~~~~1283As soon as fast-import completes the Git repository is completely valid1284and ready for use. Typically this takes only a very short time,1285even for considerably large projects (100,000+ commits).12861287However repacking the repository is necessary to improve data1288locality and access performance. It can also take hours on extremely1289large projects (especially if -f and a large \--window parameter is1290used). Since repacking is safe to run alongside readers and writers,1291run the repack in the background and let it finish when it finishes.1292There is no reason to wait to explore your new Git project!12931294If you choose to wait for the repack, don't try to run benchmarks1295or performance tests until repacking is completed. fast-import outputs1296suboptimal packfiles that are simply never seen in real use1297situations.12981299Repacking Historical Data1300~~~~~~~~~~~~~~~~~~~~~~~~~1301If you are repacking very old imported data (e.g. older than the1302last year), consider expending some extra CPU time and supplying1303\--window=50 (or higher) when you run 'git repack'.1304This will take longer, but will also produce a smaller packfile.1305You only need to expend the effort once, and everyone using your1306project will benefit from the smaller repository.13071308Include Some Progress Messages1309~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1310Every once in a while have your frontend emit a `progress` message1311to fast-import. The contents of the messages are entirely free-form,1312so one suggestion would be to output the current month and year1313each time the current commit date moves into the next month.1314Your users will feel better knowing how much of the data stream1315has been processed.131613171318Packfile Optimization1319---------------------1320When packing a blob fast-import always attempts to deltify against the last1321blob written. Unless specifically arranged for by the frontend,1322this will probably not be a prior version of the same file, so the1323generated delta will not be the smallest possible. The resulting1324packfile will be compressed, but will not be optimal.13251326Frontends which have efficient access to all revisions of a1327single file (for example reading an RCS/CVS ,v file) can choose1328to supply all revisions of that file as a sequence of consecutive1329`blob` commands. This allows fast-import to deltify the different file1330revisions against each other, saving space in the final packfile.1331Marks can be used to later identify individual file revisions during1332a sequence of `commit` commands.13331334The packfile(s) created by fast-import do not encourage good disk access1335patterns. This is caused by fast-import writing the data in the order1336it is received on standard input, while Git typically organizes1337data within packfiles to make the most recent (current tip) data1338appear before historical data. Git also clusters commits together,1339speeding up revision traversal through better cache locality.13401341For this reason it is strongly recommended that users repack the1342repository with `git repack -a -d` after fast-import completes, allowing1343Git to reorganize the packfiles for faster data access. If blob1344deltas are suboptimal (see above) then also adding the `-f` option1345to force recomputation of all deltas can significantly reduce the1346final packfile size (30-50% smaller can be quite typical).134713481349Memory Utilization1350------------------1351There are a number of factors which affect how much memory fast-import1352requires to perform an import. Like critical sections of core1353Git, fast-import uses its own memory allocators to amortize any overheads1354associated with malloc. In practice fast-import tends to amortize any1355malloc overheads to 0, due to its use of large block allocations.13561357per object1358~~~~~~~~~~1359fast-import maintains an in-memory structure for every object written in1360this execution. On a 32 bit system the structure is 32 bytes,1361on a 64 bit system the structure is 40 bytes (due to the larger1362pointer sizes). Objects in the table are not deallocated until1363fast-import terminates. Importing 2 million objects on a 32 bit system1364will require approximately 64 MiB of memory.13651366The object table is actually a hashtable keyed on the object name1367(the unique SHA-1). This storage configuration allows fast-import to reuse1368an existing or already written object and avoid writing duplicates1369to the output packfile. Duplicate blobs are surprisingly common1370in an import, typically due to branch merges in the source.13711372per mark1373~~~~~~~~1374Marks are stored in a sparse array, using 1 pointer (4 bytes or 81375bytes, depending on pointer size) per mark. Although the array1376is sparse, frontends are still strongly encouraged to use marks1377between 1 and n, where n is the total number of marks required for1378this import.13791380per branch1381~~~~~~~~~~1382Branches are classified as active and inactive. The memory usage1383of the two classes is significantly different.13841385Inactive branches are stored in a structure which uses 96 or 1201386bytes (32 bit or 64 bit systems, respectively), plus the length of1387the branch name (typically under 200 bytes), per branch. fast-import will1388easily handle as many as 10,000 inactive branches in under 2 MiB1389of memory.13901391Active branches have the same overhead as inactive branches, but1392also contain copies of every tree that has been recently modified on1393that branch. If subtree `include` has not been modified since the1394branch became active, its contents will not be loaded into memory,1395but if subtree `src` has been modified by a commit since the branch1396became active, then its contents will be loaded in memory.13971398As active branches store metadata about the files contained on that1399branch, their in-memory storage size can grow to a considerable size1400(see below).14011402fast-import automatically moves active branches to inactive status based on1403a simple least-recently-used algorithm. The LRU chain is updated on1404each `commit` command. The maximum number of active branches can be1405increased or decreased on the command line with \--active-branches=.14061407per active tree1408~~~~~~~~~~~~~~~1409Trees (aka directories) use just 12 bytes of memory on top of the1410memory required for their entries (see ``per active file'' below).1411The cost of a tree is virtually 0, as its overhead amortizes out1412over the individual file entries.14131414per active file entry1415~~~~~~~~~~~~~~~~~~~~~1416Files (and pointers to subtrees) within active trees require 52 or 641417bytes (32/64 bit platforms) per entry. To conserve space, file and1418tree names are pooled in a common string table, allowing the filename1419``Makefile'' to use just 16 bytes (after including the string header1420overhead) no matter how many times it occurs within the project.14211422The active branch LRU, when coupled with the filename string pool1423and lazy loading of subtrees, allows fast-import to efficiently import1424projects with 2,000+ branches and 45,114+ files in a very limited1425memory footprint (less than 2.7 MiB per active branch).14261427Signals1428-------1429Sending *SIGUSR1* to the 'git fast-import' process ends the current1430packfile early, simulating a `checkpoint` command. The impatient1431operator can use this facility to peek at the objects and refs from an1432import in progress, at the cost of some added running time and worse1433compression.14341435GIT1436---1437Part of the linkgit:git[1] suite