]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-fast-export.txt
fast-export: ensure we export requested refs
[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]
de613050 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
cd16c59b 30--signed-tags=(verbatim|warn|warn-strip|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
cd16c59b
JK
36when encountering a signed tag. With 'strip', the tags will silently
37be made unsigned, with 'warn-strip' they will be made unsigned but a
38warning will be displayed, with 'verbatim', they will be silently
39exported and with 'warn', they will be exported, but you will see a
40warning.
f2dc849e 41
2d8ad469 42--tag-of-filtered-object=(abort|drop|rewrite)::
6a5d0b0a 43 Specify how to handle tags whose tagged object is filtered out.
2d8ad469
EN
44 Since revisions and files to export can be limited by path,
45 tagged objects may be filtered completely.
46+
47When asking to 'abort' (which is the default), this program will die
48when encountering such a tag. With 'drop' it will omit such tags from
49the output. With 'rewrite', if the tagged object is a commit, it will
50rewrite the tag to tag an ancestor commit (via parent rewriting; see
51linkgit:git-rev-list[1])
52
ae7c5dce
AG
53-M::
54-C::
55 Perform move and/or copy detection, as described in the
56 linkgit:git-diff[1] manual page, and use it to generate
57 rename and copy commands in the output dump.
58+
59Note that earlier versions of this command did not complain and
60produced incorrect results if you gave these options.
61
df6a7ff7
PB
62--export-marks=<file>::
63 Dumps the internal marks table to <file> when complete.
64 Marks are written one per line as `:markid SHA-1`. Only marks
65 for revisions are dumped; marks for blobs are ignored.
66 Backends can use this file to validate imports after they
67 have been completed, or to save the marks table across
68 incremental runs. As <file> is only opened and truncated
69 at completion, the same path can also be safely given to
1c262bb7 70 --import-marks.
c4458ecd
AP
71 The file will not be written if no new object has been
72 marked/exported.
df6a7ff7
PB
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
1c262bb7 77 must use the same format as produced by --export-marks.
df6a7ff7
PB
78+
79Any commits that have already been marked will not be exported again.
1c262bb7 80If the backend uses a similar --import-marks file, this allows for
df6a7ff7
PB
81incremental bidirectional exporting of the repository by keeping the
82marks the same across runs.
83
4e46a8d6
JS
84--fake-missing-tagger::
85 Some old repositories have tags without a tagger. The
86 fast-import protocol was pretty strict about that, and did not
87 allow that. So fake a tagger to be able to fast-import the
88 output.
89
82670a5c
SR
90--use-done-feature::
91 Start the stream with a 'feature done' stanza, and terminate
92 it with a 'done' command.
93
79559f27
GI
94--no-data::
95 Skip output of blob objects and instead refer to blobs via
96 their original SHA-1 hash. This is useful when rewriting the
97 directory structure or history of a repository without
98 touching the contents of individual files. Note that the
99 resulting stream can only be used by a repository which
100 already contains the necessary objects.
101
7f40ab09
EN
102--full-tree::
103 This option will cause fast-export to issue a "deleteall"
104 directive for each commit followed by a full list of all files
105 in the commit (as opposed to just listing the files which are
106 different from the commit's first parent).
107
a8722750 108--anonymize::
75d3d657
JK
109 Anonymize the contents of the repository while still retaining
110 the shape of the history and stored tree. See the section on
111 `ANONYMIZING` below.
a8722750 112
03e9010c
FC
113--refspec::
114 Apply the specified refspec to each ref exported. Multiple of them can
115 be specified.
116
62b4698e 117[<git-rev-list-args>...]::
0460ed2c
FC
118 A list of arguments, acceptable to 'git rev-parse' and
119 'git rev-list', that specifies the specific objects and references
120 to export. For example, `master~10..master` causes the
121 current master reference to be exported along with all objects
4532be7c
EN
122 added since its 10th ancestor commit and all files common to
123 master{tilde}9 and master{tilde}10.
f2dc849e
JS
124
125EXAMPLES
126--------
127
128-------------------------------------------------------------------
129$ git fast-export --all | (cd /empty/repository && git fast-import)
130-------------------------------------------------------------------
131
132This will export the whole repository and import it into the existing
133empty repository. Except for reencoding commits that are not in
134UTF-8, it would be a one-to-one mirror.
135
136-----------------------------------------------------
137$ git fast-export master~5..master |
138 sed "s|refs/heads/master|refs/heads/other|" |
139 git fast-import
140-----------------------------------------------------
141
142This makes a new branch called 'other' from 'master~5..master'
143(i.e. if 'master' has linear history, it will take the last 5 commits).
144
145Note that this assumes that none of the blobs and commit messages
146referenced by that revision range contains the string
147'refs/heads/master'.
148
149
75d3d657
JK
150ANONYMIZING
151-----------
152
153If the `--anonymize` option is given, git will attempt to remove all
154identifying information from the repository while still retaining enough
155of the original tree and history patterns to reproduce some bugs. The
156goal is that a git bug which is found on a private repository will
157persist in the anonymized repository, and the latter can be shared with
158git developers to help solve the bug.
159
160With this option, git will replace all refnames, paths, blob contents,
161commit and tag messages, names, and email addresses in the output with
162anonymized data. Two instances of the same string will be replaced
163equivalently (e.g., two commits with the same author will have the same
164anonymized author in the output, but bear no resemblance to the original
165author string). The relationship between commits, branches, and tags is
166retained, as well as the commit timestamps (but the commit messages and
167refnames bear no resemblance to the originals). The relative makeup of
168the tree is retained (e.g., if you have a root tree with 10 files and 3
169trees, so will the output), but their names and the contents of the
170files will be replaced.
171
172If you think you have found a git bug, you can start by exporting an
173anonymized stream of the whole repository:
174
175---------------------------------------------------
176$ git fast-export --anonymize --all >anon-stream
177---------------------------------------------------
178
179Then confirm that the bug persists in a repository created from that
180stream (many bugs will not, as they really do depend on the exact
181repository contents):
182
183---------------------------------------------------
184$ git init anon-repo
185$ cd anon-repo
186$ git fast-import <../anon-stream
187$ ... test your bug ...
188---------------------------------------------------
189
190If the anonymized repository shows the bug, it may be worth sharing
191`anon-stream` along with a regular bug report. Note that the anonymized
192stream compresses very well, so gzipping it is encouraged. If you want
193to examine the stream to see that it does not contain any private data,
194you can peruse it directly before sending. You may also want to try:
195
196---------------------------------------------------
197$ perl -pe 's/\d+/X/g' <anon-stream | sort -u | less
198---------------------------------------------------
199
200which shows all of the unique lines (with numbers converted to "X", to
201collapse "User 0", "User 1", etc into "User X"). This produces a much
202smaller output, and it is usually easy to quickly confirm that there is
203no private data in the stream.
204
205
76a8788c 206LIMITATIONS
f2dc849e
JS
207-----------
208
0b444cdb 209Since 'git fast-import' cannot tag trees, you will not be
283efb01 210able to export the linux.git repository completely, as it contains
f2dc849e
JS
211a tag referencing a tree instead of a commit.
212
26726718
MH
213SEE ALSO
214--------
215linkgit:git-fast-import[1]
216
f2dc849e
JS
217GIT
218---
9e1f0a85 219Part of the linkgit:git[1] suite