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 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 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 119 to 'git pack-objects'. 120 121--quiet:: 122 Disable all non-fatal output, making fast-import silent when it 123 is successful. This option disables the output shown by 124 \--stats. 125 126--stats:: 127 Display some basic statistics about the objects fast-import has 128 created, the packfiles they were stored into, and the 129 memory used by fast-import during this run. Showing this output 130 is currently the default, but can be disabled with \--quiet. 131 132 133Performance 134----------- 135The design of fast-import allows it to import large projects in a minimum 136amount of memory usage and processing time. Assuming the frontend 137is able to keep up with fast-import and feed it a constant stream of data, 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 143source just cannot extract revisions fast enough) or disk IO (fast-import 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---------------- 151A typical frontend for fast-import tends to weigh in at approximately 200 152lines of Perl/Python/Ruby code. Most developers have been able to 153create working importers in just a couple of hours, even though it 154is their first exposure to fast-import, and sometimes even to Git. This is 155an ideal situation, given that most conversion tools are throw-away 156(use once, and never look back). 157 158 159Parallel Operation 160------------------ 161Like 'git push' or 'git fetch', imports handled by fast-import are safe to 162run alongside parallel `git repack -a -d` or `git gc` invocations, 163or any other Git operation (including 'git prune', as loose objects 164are never used by fast-import). 165 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 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 171fast-forward update, fast-import will skip updating that ref and instead 172prints a warning message. fast-import will always attempt to update all 173branch refs, and does not stop on the first failure. 174 175Branch updates can be forced with \--force, but it's recommended that 176this only be used on an otherwise quiet repository. Using \--force 177is not necessary for an initial import into an empty repository. 178 179 180Technical Discussion 181-------------------- 182fast-import tracks a set of branches in memory. Any branch can be created 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 189fast-import does not use or alter the current working directory, or any 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 194directory also allows fast-import to run very quickly, as it does not 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) 201the fast-import input format is text (ASCII) based. This text based 202format simplifies development and debugging of frontend programs, 203especially when a higher level language such as Perl, Python or 204Ruby is being used. 205 206fast-import is very strict about its input. Where we say SP below we mean 207*exactly* one space. Likewise LF means one (and only one) linefeed 208and HT one (and only one) horizontal tab. 209Supplying additional whitespace characters will cause unexpected 210results, such as branch names or file names with leading or trailing 211spaces in their name, or early termination of fast-import when it encounters 212unexpected input. 213 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 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 227in the \--date-format=<fmt> command line option. 228 229`raw`:: 230 This is the Git native format and is `<time> SP <offutc>`. 231 It is also fast-import's default format, if \--date-format was 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+ 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. 243+ 244If the local offset is not available in the source material, use 245``+0000'', or the most common local offset. For example many 246organizations have a CVS repository which has only ever been accessed 247by users who are located in the same location and timezone. In this 248case a reasonable offset from UTC could be assumed. 249+ 250Unlike the `rfc2822` format, this format is very strict. Any 251variation in formatting will cause fast-import to reject the value. 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 257parser is accurate, but a little on the lenient side. It is the 258same parser used by 'git am' when applying patches 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+ 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+ 272If the source material uses RFC 2822 style dates, 273the frontend should let fast-import handle the parsing and conversion 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 278already uses UNIX-epoch format, can be coaxed to give dates in that 279format, or its format is easily convertible to it, as there is no 280ambiguity in parsing. 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 288created by fast-import. There is no way to specify a different time or 289timezone. 290+ 291This particular format is supplied as it's short to implement and 292may be useful to a process that wants to create a new commit 293right now, without needing to use a working directory or 294'git update-index'. 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 303Commands 304~~~~~~~~ 305fast-import accepts several commands to update the current repository 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`:: 331 Forces fast-import to close the current packfile, generate its 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 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 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 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 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 356`feature`:: 357 Require that fast-import supports the specified feature, or 358 abort if it does not. 359 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 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? 373 ('author' (SP <name>)? SP LT <email> GT SP <when> LF)? 374 'committer' (SP <name>)? SP LT <email> GT SP <when> LF 375 data 376 ('from' SP <committish> LF)? 377 ('merge' SP <committish> LF)? 378 (filemodify | filedelete | filecopy | filerename | filedeleteall | notemodify)* 379 LF? 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 389A `mark` command may optionally appear, requesting fast-import to save a 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 399UTF-8, as fast-import does not permit other encodings to be specified. 400 401Zero or more `filemodify`, `filedelete`, `filecopy`, `filerename`, 402`filedeleteall` and `notemodify` commands 403may be included to update the contents of the branch prior to 404creating the commit. These commands may be supplied in any order. 405However it is recommended that a `filedeleteall` command precede 406all `filemodify`, `filecopy`, `filerename` and `notemodify` commands in 407the same commit, as `filedeleteall` wipes the branch clean (see below). 408 409The `LF` after the command is optional (it used to be required). 410 411`author` 412^^^^^^^^ 413An `author` command may optionally appear, if the author information 414might differ from the committer information. If `author` is omitted 415then fast-import will automatically use the committer's information for 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 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. 431 432The time of the change is specified by `<when>` using the date format 433that was selected by the \--date-format=<fmt> command line option. 434See ``Date Formats'' above for the set of supported formats, and 435their syntax. 436 437`from` 438^^^^^^ 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. 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. 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. 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 458* The name of an existing branch already in fast-import's internal branch 459 table. If fast-import doesn't know the name, it's treated as a SHA-1 460 expression. 461 462* A mark reference, `:<idnum>`, where `<idnum>` is the mark number. 463+ 464The reason fast-import uses `:` to denote a mark reference is this character 465is not legal in a Git branch name. The leading `:` makes it easy 466to distinguish between the mark 42 (`:42`) and the branch 42 (`42` 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 475 ``SPECIFYING REVISIONS'' in linkgit:gitrevisions[7] for details. 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---- 482The `^0` suffix is necessary as fast-import does not permit a branch to 483start from itself, and the branch is created in memory before the 484`from` command is even read from the input. Adding `^0` will force 485fast-import to resolve the commit through Git's revision parsing library, 486rather than its internal branch table, thereby loading in the 487existing value of the branch. 488 489`merge` 490^^^^^^^ 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 495commit are permitted by fast-import, thereby establishing an n-way merge. 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` 499commands per commit; 16, if starting a new, empty branch. 500 501Here `<committish>` is any of the commit specification expressions 502also accepted by `from` (see above). 503 504`filemodify` 505^^^^^^^^^^^^ 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+ 518Here usually `<dataref>` must be either a mark reference (`:<idnum>`) 519set by a prior `blob` command, or a full 40-byte SHA-1 of an 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`. 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. 543* `120000`: A symlink, the content of the file will be the link target. 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. 547* `040000`: A subdirectory. Subdirectories can only be specified by 548 SHA or through a tree mark set with `--import-marks`. 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 553A `<path>` string must use UNIX-style directory separators (forward 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 560The value of `<path>` must be in canonical form. That is it must not: 561 562* contain an empty directory component (e.g. `foo//bar` is invalid), 563* end with a directory separator (e.g. `foo/` is invalid), 564* start with a directory separator (e.g. `/foo` is invalid), 565* contain the special component `.` or `..` (e.g. `foo/./bar` and 566 `foo/../bar` are invalid). 567 568The root of the tree can be represented by an empty string as `<path>`. 569 570It is recommended that `<path>` always be encoded using UTF-8. 571 572`filedelete` 573^^^^^^^^^^^^ 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 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 584here `<path>` is the complete path of the file or subdirectory to 585be removed from the branch. 586See `filemodify` above for a detailed description of `<path>`. 587 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 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 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 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. 657The `filedeleteall` approach may however require fast-import to use slightly 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 662`notemodify` 663^^^^^^^^^^^^ 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. 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 701`mark` 702~~~~~~ 703Arranges for fast-import to save a reference to the current object, allowing 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. 714The value of `<idnum>` is expressed as an ASCII decimal integer. 715The value 0 is reserved and cannot be used as 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 730 'tagger' (SP <name>)? SP LT <email> GT SP <when> LF 731 data 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 738use just `RELENG-1_0-FINAL` for `<name>`, and fast-import will write the 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, 755as fast-import does not permit other encodings to be specified. 756 757Signing annotated tags during import from within fast-import is not 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. 761If signing is required, create lightweight tags from within fast-import with 762`reset`, then create the annotated versions of those tags offline 763with the standard 'git tag' process. 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)? 775 LF? 776.... 777 778For a detailed description of `<ref>` and `<committish>` see above 779under `commit` and `from`. 780 781The `LF` after the command is optional (it used to be required). 782 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 809directly to `commit`. This is typically more work than it's worth 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 815annotated tag messages) to fast-import. Data can be supplied using an exact 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. 819The delimited format is intended primarily for testing fast-import. 820 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 826Exact byte count format:: 827 The frontend must specify the number of bytes of data. 828+ 829.... 830 'data' SP <count> LF 831 <raw> LF? 832.... 833+ 834where `<count>` is the exact number of bytes appearing within 835`<raw>`. The value of `<count>` is expressed as an ASCII decimal 836integer. The `LF` on either side of `<raw>` is not 837included in `<count>` and will not be included in the imported data. 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`. 843 844Delimited format:: 845 A delimiter string is used to mark the end of the data. 846 fast-import will compute the length by searching for the delimiter. 847 This format is primarily useful for testing and is not 848 recommended for real data. 849+ 850.... 851 'data' SP '<<' <delim> LF 852 <raw> LF 853 <delim> LF 854 LF? 855.... 856+ 857where `<delim>` is the chosen delimiter string. The string `<delim>` 858must not appear on a line by itself within `<raw>`, as otherwise 859fast-import will think the data ends earlier than it really does. The `LF` 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. 863+ 864The `LF` after `<delim> LF` is optional (it used to be required). 865 866`checkpoint` 867~~~~~~~~~~~~ 868Forces fast-import to close the current packfile, start a new one, and to 869save out all current branch refs, tags and marks. 870 871.... 872 'checkpoint' LF 873 LF? 874.... 875 876Note that fast-import automatically switches packfiles when the current 877packfile reaches \--max-pack-size, or 4 GiB, whichever limit is 878smaller. During an automatic packfile switch fast-import does not update 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 889repository can be loaded into Git through fast-import in about 3 hours, 890explicit checkpointing may not be necessary. 891 892The `LF` after the command is optional (it used to be required). 893 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==== 912 frontend | git fast-import | sed 's/^progress //' 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 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 935Output uses the same format as `git cat-file --batch`: 936 937==== 938 <sha1> SP 'blob' SP <size> LF 939 <contents> LF 940==== 941 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 946See ``Responses To Commands'' below for details about how to read 947this output safely. 948 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 982Output uses the same format as `git ls-tree <tree> -- <path>`: 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 998See ``Responses To Commands'' below for details about how to read 999this output safely.10001001`feature`1002~~~~~~~~~1003Require that fast-import supports the specified feature, or abort if1004it does not.10051006....1007 'feature' SP <feature> ('=' <argument>)? LF1008....10091010The <feature> part of the command may be any one of the following:10111012date-format::1013export-marks::1014relative-marks::1015no-relative-marks::1016force::1017 Act as though the corresponding command-line option with1018 a leading '--' was passed on the command line1019 (see OPTIONS, above).10201021import-marks::1022import-marks-if-exists::1023 Like --import-marks except in two respects: first, only one1024 "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 overrides1027 any of these "feature" commands in the stream; third,1028 "feature import-marks-if-exists" like a corresponding1029 command-line option silently skips a nonexistent file.10301031cat-blob::1032ls::1033 Require that the backend support the 'cat-blob' or 'ls' command.1034 Versions of fast-import not supporting the specified command1035 will exit with a message indicating so.1036 This lets the import error out early with a clear message,1037 rather than wasting time on the early part of an import1038 before the unsupported command is detected.10391040notes::1041 Require that the backend support the 'notemodify' (N)1042 subcommand to the 'commit' command.1043 Versions of fast-import not supporting notes will exit1044 with a message indicating so.10451046done::1047 Error out if the stream ends without a 'done' command.1048 Without this feature, errors causing the frontend to end1049 abruptly at a convenient point in the stream can go1050 undetected.10511052`option`1053~~~~~~~~1054Processes the specified option so that git fast-import behaves in a1055way that suits the frontend's needs.1056Note that options specified by the frontend are overridden by any1057options the user may specify to git fast-import itself.10581059....1060 'option' SP <option> LF1061....10621063The `<option>` part of the command may contain any of the options1064listed in the OPTIONS section that do not change import semantics,1065without the leading '--' and is treated in the same way.10661067Option commands must be the first commands on the input (not counting1068feature commands), to give an option command after any non-option1069command is an error.10701071The following commandline options change import semantics and may therefore1072not be passed as option:10731074* date-format1075* import-marks1076* export-marks1077* cat-blob-fd1078* force10791080`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.10841085If the `--done` command line option or `feature done` command is1086in use, the `done` command is mandatory and marks the end of the1087stream.10881089Responses To Commands1090---------------------1091New objects written by fast-import are not available immediately.1092Most fast-import commands have no visible effect until the next1093checkpoint (or completion). The frontend can send commands to1094fill fast-import's input pipe without worrying about how quickly1095they will take effect, which improves performance by simplifying1096scheduling.10971098For some frontends, though, it is useful to be able to read back1099data from the current repository as it is being updated (for1100example when the source material describes objects in terms of1101patches to be applied to previously imported objects). This can1102be accomplished by connecting the frontend and fast-import via1103bidirectional pipes:11041105====1106 mkfifo fast-import-output1107 frontend <fast-import-output |1108 git fast-import >fast-import-output1109====11101111A frontend set up this way can use `progress`, `ls`, and `cat-blob`1112commands to read information from the import in progress.11131114To avoid deadlock, such frontends must completely consume any1115pending output from `progress`, `ls`, and `cat-blob` before1116performing writes to fast-import that might block.11171118Crash Reports1119-------------1120If fast-import is supplied invalid input it will terminate with a1121non-zero exit status and create a crash report in the top level of1122the Git repository it was importing into. Crash reports contain1123a snapshot of the internal fast-import state as well as the most1124recent commands that lead up to the crash.11251126All recent commands (including stream comments, file changes and1127progress commands) are shown in the command history within the crash1128report, but raw file data and commit messages are excluded from the1129crash report. This exclusion saves space within the report file1130and reduces the amount of buffering that fast-import must perform1131during execution.11321133After writing a crash report fast-import will close the current1134packfile and export the marks table. This allows the frontend1135developer to inspect the repository state and resume the import from1136the point where it crashed. The modified branches and tags are not1137updated during a crash, as the import did not complete successfully.1138Branch and tag information can be found in the crash report and1139must be applied manually if the update is needed.11401141An example crash:11421143====1144 $ cat >in <<END_OF_INPUT1145 # my very first test commit1146 commit refs/heads/master1147 committer Shawn O. Pearce <spearce> 19283 -04001148 # who is that guy anyway?1149 data <<EOF1150 this is my commit1151 EOF1152 M 644 inline .gitignore1153 data <<EOF1154 .gitignore1155 EOF1156 M 777 inline bob1157 END_OF_INPUT11581159 $ git fast-import <in1160 fatal: Corrupt mode: M 777 inline bob1161 fast-import: dumping crash report to .git/fast_import_crash_843411621163 $ cat .git/fast_import_crash_84341164 fast-import crash report:1165 fast-import process: 84341166 parent process : 13911167 at Sat Sep 1 00:58:12 200711681169 fatal: Corrupt mode: M 777 inline bob11701171 Most Recent Commands Before Crash1172 ---------------------------------1173 # my very first test commit1174 commit refs/heads/master1175 committer Shawn O. Pearce <spearce> 19283 -04001176 # who is that guy anyway?1177 data <<EOF1178 M 644 inline .gitignore1179 data <<EOF1180 * M 777 inline bob11811182 Active Branch LRU1183 -----------------1184 active_branches = 1 cur, 5 max11851186 pos clock name1187 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1188 1) 0 refs/heads/master11891190 Inactive Branches1191 -----------------1192 refs/heads/master:1193 status : active loaded dirty1194 tip commit : 00000000000000000000000000000000000000001195 old tree : 00000000000000000000000000000000000000001196 cur tree : 00000000000000000000000000000000000000001197 commit clock: 01198 last pack :119912001201 -------------------1202 END OF CRASH REPORT1203====12041205Tips and Tricks1206---------------1207The following tips and tricks have been collected from various1208users of fast-import, and are offered here as suggestions.12091210Use One Mark Per Commit1211~~~~~~~~~~~~~~~~~~~~~~~1212When doing a repository conversion, use a unique mark per commit1213(`mark :<n>`) and supply the \--export-marks option on the command1214line. fast-import will dump a file which lists every mark and the Git1215object SHA-1 that corresponds to it. If the frontend can tie1216the marks back to the source repository, it is easy to verify the1217accuracy and completeness of the import by comparing each Git1218commit to the corresponding source revision.12191220Coming from a system such as Perforce or Subversion this should be1221quite simple, as the fast-import mark can also be the Perforce changeset1222number or the Subversion revision number.12231224Freely Skip Around Branches1225~~~~~~~~~~~~~~~~~~~~~~~~~~~1226Don't bother trying to optimize the frontend to stick to one branch1227at a time during an import. Although doing so might be slightly1228faster for fast-import, it tends to increase the complexity of the frontend1229code considerably.12301231The branch LRU builtin to fast-import tends to behave very well, and the1232cost of activating an inactive branch is so low that bouncing around1233between branches has virtually no impact on import performance.12341235Handling Renames1236~~~~~~~~~~~~~~~~1237When importing a renamed file or directory, simply delete the old1238name(s) and modify the new name(s) during the corresponding commit.1239Git performs rename detection after-the-fact, rather than explicitly1240during a commit.12411242Use Tag Fixup Branches1243~~~~~~~~~~~~~~~~~~~~~~1244Some other SCM systems let the user create a tag from multiple1245files which are not from the same commit/changeset. Or to create1246tags which are a subset of the files available in the repository.12471248Importing these tags as-is in Git is impossible without making at1249least one commit which ``fixes up'' the files to match the content1250of the tag. Use fast-import's `reset` command to reset a dummy branch1251outside of your normal branch space to the base commit for the tag,1252then commit one or more file fixup commits, and finally tag the1253dummy branch.12541255For example since all normal branches are stored under `refs/heads/`1256name the tag fixup branch `TAG_FIXUP`. This way it is impossible for1257the fixup branch used by the importer to have namespace conflicts1258with real branches imported from the source (the name `TAG_FIXUP`1259is not `refs/heads/TAG_FIXUP`).12601261When committing fixups, consider using `merge` to connect the1262commit(s) which are supplying file revisions to the fixup branch.1263Doing so will allow tools such as 'git blame' to track1264through the real commit history and properly annotate the source1265files.12661267After fast-import terminates the frontend will need to do `rm .git/TAG_FIXUP`1268to remove the dummy branch.12691270Import Now, Repack Later1271~~~~~~~~~~~~~~~~~~~~~~~~1272As soon as fast-import completes the Git repository is completely valid1273and ready for use. Typically this takes only a very short time,1274even for considerably large projects (100,000+ commits).12751276However repacking the repository is necessary to improve data1277locality and access performance. It can also take hours on extremely1278large projects (especially if -f and a large \--window parameter is1279used). 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!12821283If you choose to wait for the repack, don't try to run benchmarks1284or performance tests until repacking is completed. fast-import outputs1285suboptimal packfiles that are simply never seen in real use1286situations.12871288Repacking Historical Data1289~~~~~~~~~~~~~~~~~~~~~~~~~1290If you are repacking very old imported data (e.g. older than the1291last year), consider expending some extra CPU time and supplying1292\--window=50 (or higher) when you run 'git repack'.1293This will take longer, but will also produce a smaller packfile.1294You only need to expend the effort once, and everyone using your1295project will benefit from the smaller repository.12961297Include Some Progress Messages1298~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1299Every once in a while have your frontend emit a `progress` message1300to fast-import. The contents of the messages are entirely free-form,1301so one suggestion would be to output the current month and year1302each time the current commit date moves into the next month.1303Your users will feel better knowing how much of the data stream1304has been processed.130513061307Packfile Optimization1308---------------------1309When packing a blob fast-import always attempts to deltify against the last1310blob written. Unless specifically arranged for by the frontend,1311this will probably not be a prior version of the same file, so the1312generated delta will not be the smallest possible. The resulting1313packfile will be compressed, but will not be optimal.13141315Frontends which have efficient access to all revisions of a1316single file (for example reading an RCS/CVS ,v file) can choose1317to supply all revisions of that file as a sequence of consecutive1318`blob` commands. This allows fast-import to deltify the different file1319revisions against each other, saving space in the final packfile.1320Marks can be used to later identify individual file revisions during1321a sequence of `commit` commands.13221323The packfile(s) created by fast-import do not encourage good disk access1324patterns. This is caused by fast-import writing the data in the order1325it is received on standard input, while Git typically organizes1326data within packfiles to make the most recent (current tip) data1327appear before historical data. Git also clusters commits together,1328speeding up revision traversal through better cache locality.13291330For this reason it is strongly recommended that users repack the1331repository with `git repack -a -d` after fast-import completes, allowing1332Git to reorganize the packfiles for faster data access. If blob1333deltas are suboptimal (see above) then also adding the `-f` option1334to force recomputation of all deltas can significantly reduce the1335final packfile size (30-50% smaller can be quite typical).133613371338Memory Utilization1339------------------1340There are a number of factors which affect how much memory fast-import1341requires to perform an import. Like critical sections of core1342Git, fast-import uses its own memory allocators to amortize any overheads1343associated with malloc. In practice fast-import tends to amortize any1344malloc overheads to 0, due to its use of large block allocations.13451346per object1347~~~~~~~~~~1348fast-import maintains an in-memory structure for every object written in1349this execution. On a 32 bit system the structure is 32 bytes,1350on a 64 bit system the structure is 40 bytes (due to the larger1351pointer sizes). Objects in the table are not deallocated until1352fast-import terminates. Importing 2 million objects on a 32 bit system1353will require approximately 64 MiB of memory.13541355The object table is actually a hashtable keyed on the object name1356(the unique SHA-1). This storage configuration allows fast-import to reuse1357an existing or already written object and avoid writing duplicates1358to the output packfile. Duplicate blobs are surprisingly common1359in an import, typically due to branch merges in the source.13601361per mark1362~~~~~~~~1363Marks are stored in a sparse array, using 1 pointer (4 bytes or 81364bytes, depending on pointer size) per mark. Although the array1365is sparse, frontends are still strongly encouraged to use marks1366between 1 and n, where n is the total number of marks required for1367this import.13681369per branch1370~~~~~~~~~~1371Branches are classified as active and inactive. The memory usage1372of the two classes is significantly different.13731374Inactive branches are stored in a structure which uses 96 or 1201375bytes (32 bit or 64 bit systems, respectively), plus the length of1376the branch name (typically under 200 bytes), per branch. fast-import will1377easily handle as many as 10,000 inactive branches in under 2 MiB1378of memory.13791380Active branches have the same overhead as inactive branches, but1381also contain copies of every tree that has been recently modified on1382that branch. If subtree `include` has not been modified since the1383branch became active, its contents will not be loaded into memory,1384but if subtree `src` has been modified by a commit since the branch1385became active, then its contents will be loaded in memory.13861387As active branches store metadata about the files contained on that1388branch, their in-memory storage size can grow to a considerable size1389(see below).13901391fast-import automatically moves active branches to inactive status based on1392a simple least-recently-used algorithm. The LRU chain is updated on1393each `commit` command. The maximum number of active branches can be1394increased or decreased on the command line with \--active-branches=.13951396per active tree1397~~~~~~~~~~~~~~~1398Trees (aka directories) use just 12 bytes of memory on top of the1399memory required for their entries (see ``per active file'' below).1400The cost of a tree is virtually 0, as its overhead amortizes out1401over the individual file entries.14021403per active file entry1404~~~~~~~~~~~~~~~~~~~~~1405Files (and pointers to subtrees) within active trees require 52 or 641406bytes (32/64 bit platforms) per entry. To conserve space, file and1407tree names are pooled in a common string table, allowing the filename1408``Makefile'' to use just 16 bytes (after including the string header1409overhead) no matter how many times it occurs within the project.14101411The active branch LRU, when coupled with the filename string pool1412and lazy loading of subtrees, allows fast-import to efficiently import1413projects with 2,000+ branches and 45,114+ files in a very limited1414memory footprint (less than 2.7 MiB per active branch).14151416Signals1417-------1418Sending *SIGUSR1* to the 'git fast-import' process ends the current1419packfile early, simulating a `checkpoint` command. The impatient1420operator can use this facility to peek at the objects and refs from an1421import in progress, at the cost of some added running time and worse1422compression.14231424GIT1425---1426Part of the linkgit:git[1] suite