summaryrefslogtreecommitdiff
path: root/builtin/fast-export.c
AgeCommit message (Expand)AuthorFilesLines
2023-03-28cocci: apply the "object-store.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-2/+3
2023-03-28cocci: apply the "commit.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-2/+2
2023-03-22fast-export: drop unused parameter from anonymize_commit_message()Jeff King1-2/+2
2023-03-22fast-export: drop data parameter from anonymous generatorsJeff King1-14/+13
2023-03-22fast-export: de-obfuscate --anonymize-map handlingJeff King1-6/+2
2023-03-22fast-export: factor out anonymized_entry creationJeff King1-9/+26
2023-03-22fast-export: simplify initialization of anonymized hashmapsJeff King1-7/+4
2023-03-22fast-export: drop const when storing anonymized valuesJeff King1-1/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2022-12-13diff: mark unused parameters in callbacksJeff King1-1/+1
2022-09-14Merge branch 'ab/unused-annotation'Junio C Hamano1-1/+1
2022-09-14Merge branch 'jk/unused-annotation'Junio C Hamano1-1/+1
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-1/+1
2022-08-19hashmap: mark unused callback parametersJeff King1-1/+1
2022-08-19parse-options: PARSE_OPT_KEEP_UNKNOWN only applies to --optionsSZEDER Gábor1-1/+1
2022-06-07Merge branch 'ab/plug-leak-in-revisions'Junio C Hamano1-0/+1
2022-05-04Merge branch 'rs/fast-export-pathspec-fix'Junio C Hamano1-0/+1
2022-04-302.36 fast-export regression fixRené Scharfe1-0/+1
2022-04-13revisions API users: add straightforward release_revisions()Ævar Arnfjörð Bjarmason1-0/+1
2022-03-16Merge branch 'ab/object-file-api-updates'Junio C Hamano1-1/+1
2022-02-25object-file API: have hash_object_file() take "enum object_type"Ævar Arnfjörð Bjarmason1-1/+1
2022-02-25object-file API: split up and simplify check_object_signature()Ævar Arnfjörð Bjarmason1-1/+1
2022-02-04i18n: fix some misformated placeholders in command synopsisJean-Noël Avila1-1/+1
2022-01-10Merge branch 'ja/i18n-similar-messages'Junio C Hamano1-2/+2
2022-01-05i18n: factorize "--foo requires --bar" and the likeJean-Noël Avila1-1/+1
2022-01-05i18n: turn "options are incompatible" into "cannot be used together"Jean-Noël Avila1-1/+1
2021-12-21fast-export: fix surprising behavior with --first-parentWilliam Sprent1-36/+4
2021-10-25Merge branch 'ab/fsck-unexpected-type'Junio C Hamano1-1/+1
2021-10-01fsck: report invalid object type-path combinationsÆvar Arnfjörð Bjarmason1-1/+1
2021-09-10Merge branch 'tk/fast-export-anonymized-tag-fix'Junio C Hamano1-0/+1
2021-08-31fast-export: fix anonymized tag using original lengthTal Kelrich1-0/+1
2021-04-27hash: provide per-algorithm null OIDsbrian m. carlson1-5/+5
2021-01-06builtin/*: update usage formatZheNing Hu1-11/+11
2020-12-15style: do not "break" in switch() after "return"Ævar Arnfjörð Bjarmason1-1/+0
2020-10-05Merge branch 'js/default-branch-name-part-2'Junio C Hamano1-1/+1
2020-10-04Merge branch 'jk/drop-unaligned-loads'Junio C Hamano1-4/+4
2020-09-24Revert "fast-export: use local array to store anonymized oid"Jeff King1-4/+4
2020-09-21fast-export: avoid using unnecessary language in a code commentJohannes Schindelin1-1/+1
2020-09-02wt-status: tolerate dangling marksJonathan Tan1-1/+1
2020-06-25fast-export: use local array to store anonymized oidJeff King1-4/+4
2020-06-25fast-export: anonymize "master" refnameJeff King1-7/+0
2020-06-25fast-export: allow seeding the anonymized mappingJeff King1-1/+49
2020-06-23fast-export: add a "data" callback parameter to anonymize_str()Jeff King1-13/+14
2020-06-23fast-export: move global "idents" anonymize hashmap into functionJeff King1-1/+1
2020-06-23fast-export: use a flex array to store anonymized entriesJeff King1-3/+2
2020-06-23fast-export: stop storing lengths in anonymized hashmapsJeff King1-10/+18
2020-06-23fast-export: tighten anonymize_mem() interface to handle only stringsJeff King1-27/+26
2020-06-23fast-export: store anonymized oids as hex stringsJeff King1-12/+16
2020-06-23fast-export: use xmemdupz() for anonymizing oidsJeff King1-1/+1