]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-fast-export.txt
Merge branch 'po/help-guides'
[thirdparty/git.git] / Documentation / git-fast-export.txt
CommitLineData
f2dc849e
JS
1git-fast-export(1)
2==================
3
4NAME
5----
6git-fast-export - Git data exporter
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
b1889c36 12'git fast-export [options]' | 'git fast-import'
f2dc849e
JS
13
14DESCRIPTION
15-----------
16This program dumps the given revisions in a form suitable to be piped
0b444cdb 17into 'git fast-import'.
f2dc849e 18
29b802aa 19You can use it as a human-readable bundle replacement (see
5162e697 20linkgit:git-bundle[1]), or as a kind of an interactive
0b444cdb 21'git filter-branch'.
f2dc849e
JS
22
23
24OPTIONS
25-------
26--progress=<n>::
27 Insert 'progress' statements every <n> objects, to be shown by
0b444cdb 28 'git fast-import' during import.
f2dc849e 29
ee4bc371 30--signed-tags=(verbatim|warn|strip|abort)::
f2dc849e
JS
31 Specify how to handle signed tags. Since any transformation
32 after the export can change the tag names (which can also happen
33 when excluding revisions) the signatures will not match.
34+
35When asking to 'abort' (which is the default), this program will die
36when encountering a signed tag. With 'strip', the tags will be made
ee4bc371 37unsigned, with 'verbatim', they will be silently exported
f2dc849e
JS
38and with 'warn', they will be exported, but you will see a warning.
39
2d8ad469 40--tag-of-filtered-object=(abort|drop|rewrite)::
6a5d0b0a 41 Specify how to handle tags whose tagged object is filtered out.
2d8ad469
EN
42 Since revisions and files to export can be limited by path,
43 tagged objects may be filtered completely.
44+
45When asking to 'abort' (which is the default), this program will die
46when encountering such a tag. With 'drop' it will omit such tags from
47the output. With 'rewrite', if the tagged object is a commit, it will
48rewrite the tag to tag an ancestor commit (via parent rewriting; see
49linkgit:git-rev-list[1])
50
ae7c5dce
AG
51-M::
52-C::
53 Perform move and/or copy detection, as described in the
54 linkgit:git-diff[1] manual page, and use it to generate
55 rename and copy commands in the output dump.
56+
57Note that earlier versions of this command did not complain and
58produced incorrect results if you gave these options.
59
df6a7ff7
PB
60--export-marks=<file>::
61 Dumps the internal marks table to <file> when complete.
62 Marks are written one per line as `:markid SHA-1`. Only marks
63 for revisions are dumped; marks for blobs are ignored.
64 Backends can use this file to validate imports after they
65 have been completed, or to save the marks table across
66 incremental runs. As <file> is only opened and truncated
67 at completion, the same path can also be safely given to
68 \--import-marks.
c4458ecd
AP
69 The file will not be written if no new object has been
70 marked/exported.
df6a7ff7
PB
71
72--import-marks=<file>::
73 Before processing any input, load the marks specified in
74 <file>. The input file must exist, must be readable, and
75 must use the same format as produced by \--export-marks.
76+
77Any commits that have already been marked will not be exported again.
78If the backend uses a similar \--import-marks file, this allows for
79incremental bidirectional exporting of the repository by keeping the
80marks the same across runs.
81
4e46a8d6
JS
82--fake-missing-tagger::
83 Some old repositories have tags without a tagger. The
84 fast-import protocol was pretty strict about that, and did not
85 allow that. So fake a tagger to be able to fast-import the
86 output.
87
82670a5c
SR
88--use-done-feature::
89 Start the stream with a 'feature done' stanza, and terminate
90 it with a 'done' command.
91
79559f27
GI
92--no-data::
93 Skip output of blob objects and instead refer to blobs via
94 their original SHA-1 hash. This is useful when rewriting the
95 directory structure or history of a repository without
96 touching the contents of individual files. Note that the
97 resulting stream can only be used by a repository which
98 already contains the necessary objects.
99
7f40ab09
EN
100--full-tree::
101 This option will cause fast-export to issue a "deleteall"
102 directive for each commit followed by a full list of all files
103 in the commit (as opposed to just listing the files which are
104 different from the commit's first parent).
105
62b4698e 106[<git-rev-list-args>...]::
0b444cdb
TR
107 A list of arguments, acceptable to 'git rev-parse' and
108 'git rev-list', that specifies the specific objects and references
6cf378f0 109 to export. For example, `master~10..master` causes the
8af15d28
EN
110 current master reference to be exported along with all objects
111 added since its 10th ancestor commit.
f2dc849e
JS
112
113EXAMPLES
114--------
115
116-------------------------------------------------------------------
117$ git fast-export --all | (cd /empty/repository && git fast-import)
118-------------------------------------------------------------------
119
120This will export the whole repository and import it into the existing
121empty repository. Except for reencoding commits that are not in
122UTF-8, it would be a one-to-one mirror.
123
124-----------------------------------------------------
125$ git fast-export master~5..master |
126 sed "s|refs/heads/master|refs/heads/other|" |
127 git fast-import
128-----------------------------------------------------
129
130This makes a new branch called 'other' from 'master~5..master'
131(i.e. if 'master' has linear history, it will take the last 5 commits).
132
133Note that this assumes that none of the blobs and commit messages
134referenced by that revision range contains the string
135'refs/heads/master'.
136
137
138Limitations
139-----------
140
0b444cdb 141Since 'git fast-import' cannot tag trees, you will not be
f2dc849e
JS
142able to export the linux-2.6.git repository completely, as it contains
143a tag referencing a tree instead of a commit.
144
f2dc849e
JS
145GIT
146---
9e1f0a85 147Part of the linkgit:git[1] suite