2 * "git fast-export" builtin command
4 * Copyright (C) 2007 Johannes E. Schindelin
11 #include "object-store.h"
20 #include "string-list.h"
22 #include "parse-options.h"
26 #include "commit-slab.h"
28 static const char *fast_export_usage[] = {
29 N_("git fast-export [rev-list-opts]"),
34 static enum { SIGNED_TAG_ABORT, VERBATIM, WARN, WARN_STRIP, STRIP } signed_tag_mode = SIGNED_TAG_ABORT;
35 static enum { TAG_FILTERING_ABORT, DROP, REWRITE } tag_of_filtered_mode = TAG_FILTERING_ABORT;
36 static int fake_missing_tagger;
37 static int use_done_feature;
40 static struct string_list extra_refs = STRING_LIST_INIT_NODUP;
41 static struct refspec refspecs = REFSPEC_INIT_FETCH;
43 static struct revision_sources revision_sources;
45 static int parse_opt_signed_tag_mode(const struct option *opt,
46 const char *arg, int unset)
48 if (unset || !strcmp(arg, "abort"))
49 signed_tag_mode = SIGNED_TAG_ABORT;
50 else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore"))
51 signed_tag_mode = VERBATIM;
52 else if (!strcmp(arg, "warn"))
53 signed_tag_mode = WARN;
54 else if (!strcmp(arg, "warn-strip"))
55 signed_tag_mode = WARN_STRIP;
56 else if (!strcmp(arg, "strip"))
57 signed_tag_mode = STRIP;
59 return error("Unknown signed-tags mode: %s", arg);
63 static int parse_opt_tag_of_filtered_mode(const struct option *opt,
64 const char *arg, int unset)
66 if (unset || !strcmp(arg, "abort"))
67 tag_of_filtered_mode = TAG_FILTERING_ABORT;
68 else if (!strcmp(arg, "drop"))
69 tag_of_filtered_mode = DROP;
70 else if (!strcmp(arg, "rewrite"))
71 tag_of_filtered_mode = REWRITE;
73 return error("Unknown tag-of-filtered mode: %s", arg);
77 static struct decoration idnums;
78 static uint32_t last_idnum;
80 static int has_unshown_parent(struct commit *commit)
82 struct commit_list *parent;
84 for (parent = commit->parents; parent; parent = parent->next)
85 if (!(parent->item->object.flags & SHOWN) &&
86 !(parent->item->object.flags & UNINTERESTING))
91 struct anonymized_entry {
92 struct hashmap_entry hash;
99 static int anonymized_entry_cmp(const void *unused_cmp_data,
100 const void *va, const void *vb,
101 const void *unused_keydata)
103 const struct anonymized_entry *a = va, *b = vb;
104 return a->orig_len != b->orig_len ||
105 memcmp(a->orig, b->orig, a->orig_len);
109 * Basically keep a cache of X->Y so that we can repeatedly replace
110 * the same anonymized string with another. The actual generation
111 * is farmed out to the generate function.
113 static const void *anonymize_mem(struct hashmap *map,
114 void *(*generate)(const void *, size_t *),
115 const void *orig, size_t *len)
117 struct anonymized_entry key, *ret;
120 hashmap_init(map, anonymized_entry_cmp, NULL, 0);
122 hashmap_entry_init(&key, memhash(orig, *len));
125 ret = hashmap_get(map, &key, NULL);
128 ret = xmalloc(sizeof(*ret));
129 hashmap_entry_init(&ret->hash, key.hash.hash);
130 ret->orig = xstrdup(orig);
131 ret->orig_len = *len;
132 ret->anon = generate(orig, len);
133 ret->anon_len = *len;
134 hashmap_put(map, ret);
137 *len = ret->anon_len;
142 * We anonymize each component of a path individually,
143 * so that paths a/b and a/c will share a common root.
144 * The paths are cached via anonymize_mem so that repeated
145 * lookups for "a" will yield the same value.
147 static void anonymize_path(struct strbuf *out, const char *path,
149 void *(*generate)(const void *, size_t *))
152 const char *end_of_component = strchrnul(path, '/');
153 size_t len = end_of_component - path;
154 const char *c = anonymize_mem(map, generate, path, &len);
155 strbuf_add(out, c, len);
156 path = end_of_component;
158 strbuf_addch(out, *path++);
162 static inline void *mark_to_ptr(uint32_t mark)
164 return (void *)(uintptr_t)mark;
167 static inline uint32_t ptr_to_mark(void * mark)
169 return (uint32_t)(uintptr_t)mark;
172 static inline void mark_object(struct object *object, uint32_t mark)
174 add_decoration(&idnums, object, mark_to_ptr(mark));
177 static inline void mark_next_object(struct object *object)
179 mark_object(object, ++last_idnum);
182 static int get_object_mark(struct object *object)
184 void *decoration = lookup_decoration(&idnums, object);
187 return ptr_to_mark(decoration);
190 static struct commit *rewrite_commit(struct commit *p)
193 if (p->parents && p->parents->next)
195 if (p->object.flags & UNINTERESTING)
197 if (!(p->object.flags & TREESAME))
201 p = p->parents->item;
206 static void show_progress(void)
208 static int counter = 0;
211 if ((++counter % progress) == 0)
212 printf("progress %d objects\n", counter);
216 * Ideally we would want some transformation of the blob data here
217 * that is unreversible, but would still be the same size and have
218 * the same data relationship to other blobs (so that we get the same
219 * delta and packing behavior as the original). But the first and last
220 * requirements there are probably mutually exclusive, so let's take
221 * the easy way out for now, and just generate arbitrary content.
223 * There's no need to cache this result with anonymize_mem, since
224 * we already handle blob content caching with marks.
226 static char *anonymize_blob(unsigned long *size)
229 struct strbuf out = STRBUF_INIT;
230 strbuf_addf(&out, "anonymous blob %d", counter++);
232 return strbuf_detach(&out, NULL);
235 static void export_blob(const struct object_id *oid)
238 enum object_type type;
240 struct object *object;
246 if (is_null_oid(oid))
249 object = lookup_object(the_repository, oid->hash);
250 if (object && object->flags & SHOWN)
254 buf = anonymize_blob(&size);
255 object = (struct object *)lookup_blob(the_repository, oid);
258 buf = read_object_file(oid, &type, &size);
260 die("could not read blob %s", oid_to_hex(oid));
261 if (check_object_signature(oid, buf, size, type_name(type)) < 0)
262 die("oid mismatch in blob %s", oid_to_hex(oid));
263 object = parse_object_buffer(the_repository, oid, type,
268 die("Could not read blob %s", oid_to_hex(oid));
270 mark_next_object(object);
272 printf("blob\nmark :%"PRIu32"\ndata %lu\n", last_idnum, size);
273 if (size && fwrite(buf, size, 1, stdout) != 1)
274 die_errno("could not write blob '%s'", oid_to_hex(oid));
279 object->flags |= SHOWN;
284 static int depth_first(const void *a_, const void *b_)
286 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
287 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
288 const char *name_a, *name_b;
289 int len_a, len_b, len;
292 name_a = a->one ? a->one->path : a->two->path;
293 name_b = b->one ? b->one->path : b->two->path;
295 len_a = strlen(name_a);
296 len_b = strlen(name_b);
297 len = (len_a < len_b) ? len_a : len_b;
299 /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */
300 cmp = memcmp(name_a, name_b, len);
307 * Move 'R'ename entries last so that all references of the file
308 * appear in the output before it is renamed (e.g., when a file
309 * was copied and renamed in the same commit).
311 return (a->status == 'R') - (b->status == 'R');
314 static void print_path_1(const char *path)
316 int need_quote = quote_c_style(path, NULL, NULL, 0);
318 quote_c_style(path, NULL, stdout, 0);
319 else if (strchr(path, ' '))
320 printf("\"%s\"", path);
325 static void *anonymize_path_component(const void *path, size_t *len)
328 struct strbuf out = STRBUF_INIT;
329 strbuf_addf(&out, "path%d", counter++);
330 return strbuf_detach(&out, len);
333 static void print_path(const char *path)
338 static struct hashmap paths;
339 static struct strbuf anon = STRBUF_INIT;
341 anonymize_path(&anon, path, &paths, anonymize_path_component);
342 print_path_1(anon.buf);
347 static void *generate_fake_oid(const void *old, size_t *len)
349 static uint32_t counter = 1; /* avoid null oid */
350 const unsigned hashsz = the_hash_algo->rawsz;
351 unsigned char *out = xcalloc(hashsz, 1);
352 put_be32(out + hashsz - 4, counter++);
356 static const struct object_id *anonymize_oid(const struct object_id *oid)
358 static struct hashmap objs;
359 size_t len = the_hash_algo->rawsz;
360 return anonymize_mem(&objs, generate_fake_oid, oid, &len);
363 static void show_filemodify(struct diff_queue_struct *q,
364 struct diff_options *options, void *data)
367 struct string_list *changed = data;
370 * Handle files below a directory first, in case they are all deleted
371 * and the directory changes to a file or symlink.
373 QSORT(q->queue, q->nr, depth_first);
375 for (i = 0; i < q->nr; i++) {
376 struct diff_filespec *ospec = q->queue[i]->one;
377 struct diff_filespec *spec = q->queue[i]->two;
379 switch (q->queue[i]->status) {
380 case DIFF_STATUS_DELETED:
382 print_path(spec->path);
383 string_list_insert(changed, spec->path);
387 case DIFF_STATUS_COPIED:
388 case DIFF_STATUS_RENAMED:
390 * If a change in the file corresponding to ospec->path
391 * has been observed, we cannot trust its contents
392 * because the diff is calculated based on the prior
393 * contents, not the current contents. So, declare a
394 * copy or rename only if there was no change observed.
396 if (!string_list_has_string(changed, ospec->path)) {
397 printf("%c ", q->queue[i]->status);
398 print_path(ospec->path);
400 print_path(spec->path);
401 string_list_insert(changed, spec->path);
404 if (oideq(&ospec->oid, &spec->oid) &&
405 ospec->mode == spec->mode)
410 case DIFF_STATUS_TYPE_CHANGED:
411 case DIFF_STATUS_MODIFIED:
412 case DIFF_STATUS_ADDED:
414 * Links refer to objects in another repositories;
415 * output the SHA-1 verbatim.
417 if (no_data || S_ISGITLINK(spec->mode))
418 printf("M %06o %s ", spec->mode,
419 oid_to_hex(anonymize ?
420 anonymize_oid(&spec->oid) :
423 struct object *object = lookup_object(the_repository,
425 printf("M %06o :%d ", spec->mode,
426 get_object_mark(object));
428 print_path(spec->path);
429 string_list_insert(changed, spec->path);
434 die("Unexpected comparison status '%c' for %s, %s",
436 ospec->path ? ospec->path : "none",
437 spec->path ? spec->path : "none");
442 static const char *find_encoding(const char *begin, const char *end)
444 const char *needle = "\nencoding ";
447 bol = memmem(begin, end ? end - begin : strlen(begin),
448 needle, strlen(needle));
450 return git_commit_encoding;
451 bol += strlen(needle);
452 eol = strchrnul(bol, '\n');
457 static void *anonymize_ref_component(const void *old, size_t *len)
460 struct strbuf out = STRBUF_INIT;
461 strbuf_addf(&out, "ref%d", counter++);
462 return strbuf_detach(&out, len);
465 static const char *anonymize_refname(const char *refname)
468 * If any of these prefixes is found, we will leave it intact
469 * so that tags remain tags and so forth.
471 static const char *prefixes[] = {
477 static struct hashmap refs;
478 static struct strbuf anon = STRBUF_INIT;
482 * We also leave "master" as a special case, since it does not reveal
483 * anything interesting.
485 if (!strcmp(refname, "refs/heads/master"))
489 for (i = 0; i < ARRAY_SIZE(prefixes); i++) {
490 if (skip_prefix(refname, prefixes[i], &refname)) {
491 strbuf_addstr(&anon, prefixes[i]);
496 anonymize_path(&anon, refname, &refs, anonymize_ref_component);
501 * We do not even bother to cache commit messages, as they are unlikely
502 * to be repeated verbatim, and it is not that interesting when they are.
504 static char *anonymize_commit_message(const char *old)
507 return xstrfmt("subject %d\n\nbody\n", counter++);
510 static struct hashmap idents;
511 static void *anonymize_ident(const void *old, size_t *len)
514 struct strbuf out = STRBUF_INIT;
515 strbuf_addf(&out, "User %d <user%d@example.com>", counter, counter);
517 return strbuf_detach(&out, len);
521 * Our strategy here is to anonymize the names and email addresses,
522 * but keep timestamps intact, as they influence things like traversal
523 * order (and by themselves should not be too revealing).
525 static void anonymize_ident_line(const char **beg, const char **end)
527 static struct strbuf buffers[] = { STRBUF_INIT, STRBUF_INIT };
528 static unsigned which_buffer;
531 struct ident_split split;
532 const char *end_of_header;
534 out = &buffers[which_buffer++];
535 which_buffer %= ARRAY_SIZE(buffers);
538 /* skip "committer", "author", "tagger", etc */
539 end_of_header = strchr(*beg, ' ');
541 BUG("malformed line fed to anonymize_ident_line: %.*s",
542 (int)(*end - *beg), *beg);
544 strbuf_add(out, *beg, end_of_header - *beg);
546 if (!split_ident_line(&split, end_of_header, *end - end_of_header) &&
551 len = split.mail_end - split.name_begin;
552 ident = anonymize_mem(&idents, anonymize_ident,
553 split.name_begin, &len);
554 strbuf_add(out, ident, len);
555 strbuf_addch(out, ' ');
556 strbuf_add(out, split.date_begin, split.tz_end - split.date_begin);
558 strbuf_addstr(out, "Malformed Ident <malformed@example.com> 0 -0000");
562 *end = out->buf + out->len;
565 static void handle_commit(struct commit *commit, struct rev_info *rev,
566 struct string_list *paths_of_changed_objects)
568 int saved_output_format = rev->diffopt.output_format;
569 const char *commit_buffer;
570 const char *author, *author_end, *committer, *committer_end;
571 const char *encoding, *message;
572 char *reencoded = NULL;
573 struct commit_list *p;
577 rev->diffopt.output_format = DIFF_FORMAT_CALLBACK;
579 parse_commit_or_die(commit);
580 commit_buffer = get_commit_buffer(commit, NULL);
581 author = strstr(commit_buffer, "\nauthor ");
583 die("could not find author in commit %s",
584 oid_to_hex(&commit->object.oid));
586 author_end = strchrnul(author, '\n');
587 committer = strstr(author_end, "\ncommitter ");
589 die("could not find committer in commit %s",
590 oid_to_hex(&commit->object.oid));
592 committer_end = strchrnul(committer, '\n');
593 message = strstr(committer_end, "\n\n");
594 encoding = find_encoding(committer_end, message);
598 if (commit->parents &&
599 get_object_mark(&commit->parents->item->object) != 0 &&
601 parse_commit_or_die(commit->parents->item);
602 diff_tree_oid(get_commit_tree_oid(commit->parents->item),
603 get_commit_tree_oid(commit), "", &rev->diffopt);
606 diff_root_tree_oid(get_commit_tree_oid(commit),
609 /* Export the referenced blobs, and remember the marks. */
610 for (i = 0; i < diff_queued_diff.nr; i++)
611 if (!S_ISGITLINK(diff_queued_diff.queue[i]->two->mode))
612 export_blob(&diff_queued_diff.queue[i]->two->oid);
614 refname = *revision_sources_at(&revision_sources, commit);
616 refname = anonymize_refname(refname);
617 anonymize_ident_line(&committer, &committer_end);
618 anonymize_ident_line(&author, &author_end);
621 mark_next_object(&commit->object);
623 reencoded = anonymize_commit_message(message);
624 else if (!is_encoding_utf8(encoding))
625 reencoded = reencode_string(message, "UTF-8", encoding);
626 if (!commit->parents)
627 printf("reset %s\n", refname);
628 printf("commit %s\nmark :%"PRIu32"\n%.*s\n%.*s\ndata %u\n%s",
630 (int)(author_end - author), author,
631 (int)(committer_end - committer), committer,
633 ? strlen(reencoded) : message
634 ? strlen(message) : 0),
635 reencoded ? reencoded : message ? message : "");
637 unuse_commit_buffer(commit, commit_buffer);
639 for (i = 0, p = commit->parents; p; p = p->next) {
640 int mark = get_object_mark(&p->item->object);
644 printf("from :%d\n", mark);
646 printf("merge :%d\n", mark);
651 printf("deleteall\n");
652 log_tree_diff_flush(rev);
653 string_list_clear(paths_of_changed_objects, 0);
654 rev->diffopt.output_format = saved_output_format;
661 static void *anonymize_tag(const void *old, size_t *len)
664 struct strbuf out = STRBUF_INIT;
665 strbuf_addf(&out, "tag message %d", counter++);
666 return strbuf_detach(&out, len);
669 static void handle_tail(struct object_array *commits, struct rev_info *revs,
670 struct string_list *paths_of_changed_objects)
672 struct commit *commit;
673 while (commits->nr) {
674 commit = (struct commit *)object_array_pop(commits);
675 if (has_unshown_parent(commit)) {
676 /* Queue again, to be handled later */
677 add_object_array(&commit->object, NULL, commits);
680 handle_commit(commit, revs, paths_of_changed_objects);
684 static void handle_tag(const char *name, struct tag *tag)
687 enum object_type type;
689 const char *tagger, *tagger_end, *message;
690 size_t message_size = 0;
691 struct object *tagged;
695 /* Trees have no identifier in fast-export output, thus we have no way
696 * to output tags of trees, tags of tags of trees, etc. Simply omit
699 tagged = tag->tagged;
700 while (tagged->type == OBJ_TAG) {
701 tagged = ((struct tag *)tagged)->tagged;
703 if (tagged->type == OBJ_TREE) {
704 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
705 oid_to_hex(&tag->object.oid));
709 buf = read_object_file(&tag->object.oid, &type, &size);
711 die("could not read tag %s", oid_to_hex(&tag->object.oid));
712 message = memmem(buf, size, "\n\n", 2);
715 message_size = strlen(message);
717 tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8);
719 if (fake_missing_tagger)
720 tagger = "tagger Unspecified Tagger "
721 "<unspecified-tagger> 0 +0000";
724 tagger_end = tagger + strlen(tagger);
727 tagger_end = strchrnul(tagger, '\n');
729 anonymize_ident_line(&tagger, &tagger_end);
733 name = anonymize_refname(name);
735 static struct hashmap tags;
736 message = anonymize_mem(&tags, anonymize_tag,
737 message, &message_size);
741 /* handle signed tags */
743 const char *signature = strstr(message,
744 "\n-----BEGIN PGP SIGNATURE-----\n");
746 switch(signed_tag_mode) {
747 case SIGNED_TAG_ABORT:
748 die("encountered signed tag %s; use "
749 "--signed-tags=<mode> to handle it",
750 oid_to_hex(&tag->object.oid));
752 warning("exporting signed tag %s",
753 oid_to_hex(&tag->object.oid));
758 warning("stripping signature from tag %s",
759 oid_to_hex(&tag->object.oid));
762 message_size = signature + 1 - message;
767 /* handle tag->tagged having been filtered out due to paths specified */
768 tagged = tag->tagged;
769 tagged_mark = get_object_mark(tagged);
771 switch(tag_of_filtered_mode) {
772 case TAG_FILTERING_ABORT:
773 die("tag %s tags unexported object; use "
774 "--tag-of-filtered-object=<mode> to handle it",
775 oid_to_hex(&tag->object.oid));
777 /* Ignore this tag altogether */
781 if (tagged->type != OBJ_COMMIT) {
782 die("tag %s tags unexported %s!",
783 oid_to_hex(&tag->object.oid),
784 type_name(tagged->type));
786 p = rewrite_commit((struct commit *)tagged);
788 printf("reset %s\nfrom %s\n\n",
789 name, oid_to_hex(&null_oid));
793 tagged_mark = get_object_mark(&p->object);
797 if (starts_with(name, "refs/tags/"))
799 printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n",
801 (int)(tagger_end - tagger), tagger,
802 tagger == tagger_end ? "" : "\n",
803 (int)message_size, (int)message_size, message ? message : "");
807 static struct commit *get_commit(struct rev_cmdline_entry *e, char *full_name)
809 switch (e->item->type) {
811 return (struct commit *)e->item;
813 struct tag *tag = (struct tag *)e->item;
815 /* handle nested tags */
816 while (tag && tag->object.type == OBJ_TAG) {
817 parse_object(the_repository, &tag->object.oid);
818 string_list_append(&extra_refs, full_name)->util = tag;
819 tag = (struct tag *)tag->tagged;
822 die("Tag %s points nowhere?", e->name);
823 return (struct commit *)tag;
831 static void get_tags_and_duplicates(struct rev_cmdline_info *info)
835 for (i = 0; i < info->nr; i++) {
836 struct rev_cmdline_entry *e = info->rev + i;
837 struct object_id oid;
838 struct commit *commit;
841 if (e->flags & UNINTERESTING)
844 if (dwim_ref(e->name, strlen(e->name), &oid, &full_name) != 1)
849 private = apply_refspecs(&refspecs, full_name);
856 commit = get_commit(e, full_name);
858 warning("%s: Unexpected object of type %s, skipping.",
860 type_name(e->item->type));
864 switch(commit->object.type) {
868 export_blob(&commit->object.oid);
870 default: /* OBJ_TAG (nested tags) is already handled */
871 warning("Tag points to object of unexpected type %s, skipping.",
872 type_name(commit->object.type));
877 * This ref will not be updated through a commit, lets make
878 * sure it gets properly updated eventually.
880 if (*revision_sources_at(&revision_sources, commit) ||
881 commit->object.flags & SHOWN)
882 string_list_append(&extra_refs, full_name)->util = commit;
883 if (!*revision_sources_at(&revision_sources, commit))
884 *revision_sources_at(&revision_sources, commit) = full_name;
888 static void handle_tags_and_duplicates(void)
890 struct commit *commit;
893 for (i = extra_refs.nr - 1; i >= 0; i--) {
894 const char *name = extra_refs.items[i].string;
895 struct object *object = extra_refs.items[i].util;
896 switch (object->type) {
898 handle_tag(name, (struct tag *)object);
902 name = anonymize_refname(name);
903 /* create refs pointing to already seen commits */
904 commit = (struct commit *)object;
905 printf("reset %s\nfrom :%d\n\n", name,
906 get_object_mark(&commit->object));
913 static void export_marks(char *file)
917 struct decoration_entry *deco = idnums.entries;
921 f = fopen_for_writing(file);
923 die_errno("Unable to open marks file %s for writing.", file);
925 for (i = 0; i < idnums.size; i++) {
926 if (deco->base && deco->base->type == 1) {
927 mark = ptr_to_mark(deco->decoration);
928 if (fprintf(f, ":%"PRIu32" %s\n", mark,
929 oid_to_hex(&deco->base->oid)) < 0) {
940 error("Unable to write marks file %s.", file);
943 static void import_marks(char *input_file)
946 FILE *f = xfopen(input_file, "r");
948 while (fgets(line, sizeof(line), f)) {
950 char *line_end, *mark_end;
951 struct object_id oid;
952 struct object *object;
953 struct commit *commit;
954 enum object_type type;
956 line_end = strchr(line, '\n');
957 if (line[0] != ':' || !line_end)
958 die("corrupt mark line: %s", line);
961 mark = strtoumax(line + 1, &mark_end, 10);
962 if (!mark || mark_end == line + 1
963 || *mark_end != ' ' || get_oid_hex(mark_end + 1, &oid))
964 die("corrupt mark line: %s", line);
966 if (last_idnum < mark)
969 type = oid_object_info(the_repository, &oid, NULL);
971 die("object not found: %s", oid_to_hex(&oid));
973 if (type != OBJ_COMMIT)
977 commit = lookup_commit(the_repository, &oid);
979 die("not a commit? can't happen: %s", oid_to_hex(&oid));
981 object = &commit->object;
983 if (object->flags & SHOWN)
984 error("Object %s already has a mark", oid_to_hex(&oid));
986 mark_object(object, mark);
988 object->flags |= SHOWN;
993 static void handle_deletes(void)
996 for (i = 0; i < refspecs.nr; i++) {
997 struct refspec_item *refspec = &refspecs.items[i];
1001 printf("reset %s\nfrom %s\n\n",
1002 refspec->dst, oid_to_hex(&null_oid));
1006 int cmd_fast_export(int argc, const char **argv, const char *prefix)
1008 struct rev_info revs;
1009 struct object_array commits = OBJECT_ARRAY_INIT;
1010 struct commit *commit;
1011 char *export_filename = NULL, *import_filename = NULL;
1012 uint32_t lastimportid;
1013 struct string_list refspecs_list = STRING_LIST_INIT_NODUP;
1014 struct string_list paths_of_changed_objects = STRING_LIST_INIT_DUP;
1015 struct option options[] = {
1016 OPT_INTEGER(0, "progress", &progress,
1017 N_("show progress after <n> objects")),
1018 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, N_("mode"),
1019 N_("select handling of signed tags"),
1020 parse_opt_signed_tag_mode),
1021 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode, N_("mode"),
1022 N_("select handling of tags that tag filtered objects"),
1023 parse_opt_tag_of_filtered_mode),
1024 OPT_STRING(0, "export-marks", &export_filename, N_("file"),
1025 N_("Dump marks to this file")),
1026 OPT_STRING(0, "import-marks", &import_filename, N_("file"),
1027 N_("Import marks from this file")),
1028 OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger,
1029 N_("Fake a tagger when tags lack one")),
1030 OPT_BOOL(0, "full-tree", &full_tree,
1031 N_("Output full tree for each commit")),
1032 OPT_BOOL(0, "use-done-feature", &use_done_feature,
1033 N_("Use the done feature to terminate the stream")),
1034 OPT_BOOL(0, "no-data", &no_data, N_("Skip output of blob data")),
1035 OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"),
1036 N_("Apply refspec to exported refs")),
1037 OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")),
1042 usage_with_options (fast_export_usage, options);
1044 /* we handle encodings */
1045 git_config(git_default_config, NULL);
1047 repo_init_revisions(the_repository, &revs, prefix);
1048 init_revision_sources(&revision_sources);
1049 revs.topo_order = 1;
1050 revs.sources = &revision_sources;
1051 revs.rewrite_parents = 1;
1052 argc = parse_options(argc, argv, prefix, options, fast_export_usage,
1053 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN);
1054 argc = setup_revisions(argc, argv, &revs, NULL);
1056 usage_with_options (fast_export_usage, options);
1058 if (refspecs_list.nr) {
1061 for (i = 0; i < refspecs_list.nr; i++)
1062 refspec_append(&refspecs, refspecs_list.items[i].string);
1064 string_list_clear(&refspecs_list, 1);
1067 if (use_done_feature)
1068 printf("feature done\n");
1070 if (import_filename)
1071 import_marks(import_filename);
1072 lastimportid = last_idnum;
1074 if (import_filename && revs.prune_data.nr)
1077 get_tags_and_duplicates(&revs.cmdline);
1079 if (prepare_revision_walk(&revs))
1080 die("revision walk setup failed");
1081 revs.diffopt.format_callback = show_filemodify;
1082 revs.diffopt.format_callback_data = &paths_of_changed_objects;
1083 revs.diffopt.flags.recursive = 1;
1084 while ((commit = get_revision(&revs))) {
1085 if (has_unshown_parent(commit)) {
1086 add_object_array(&commit->object, NULL, &commits);
1089 handle_commit(commit, &revs, &paths_of_changed_objects);
1090 handle_tail(&commits, &revs, &paths_of_changed_objects);
1094 handle_tags_and_duplicates();
1097 if (export_filename && lastimportid != last_idnum)
1098 export_marks(export_filename);
1100 if (use_done_feature)
1103 refspec_clear(&refspecs);