aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/fast-export.c (follow)
AgeCommit message (Expand)AuthorFilesLines
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
2020-02-14Merge branch 'mt/use-passed-repo-more-in-funcs'Junio C Hamano1-1/+2
2020-01-31C: use skip_prefix() to avoid hardcoded string lengthJunio C Hamano1-2/+1
2020-01-31sha1-file: allow check_object_signature() to handle any repoMatheus Tavares1-1/+2
2019-10-15Merge branch 'ew/hashmap'Junio C Hamano1-5/+10
2019-10-07hashmap: remove type arg from hashmap_{get,put,remove}_entryEric Wong1-1/+1
2019-10-07hashmap_cmp_fn takes hashmap_entry paramsEric Wong1-2/+7
2019-10-07hashmap_get{,_from_hash} return "struct hashmap_entry *"Eric Wong1-1/+1
2019-10-07hashmap_put takes "struct hashmap_entry *"Eric Wong1-1/+1
2019-10-07hashmap_get takes "const struct hashmap_entry *"Eric Wong1-1/+1
2019-10-07hashmap_entry_init takes "struct hashmap_entry *"Eric Wong1-1/+1