aboutsummaryrefslogtreecommitdiffstats
path: root/range-diff.c
AgeCommit message (Expand)AuthorFilesLines
2023-09-29Merge branch 'kh/range-diff-notes'Junio C Hamano1-1/+1
2023-09-19range-diff: treat notes like `log`Kristoffer Haugsbakk1-1/+1
2023-08-19hashmap: use expected signatures for comparison functionsJeff King1-4/+7
2023-06-21diff.h: remove unnecessary include of oidset.hElijah Newren1-0/+1
2023-04-24treewide: remove cache.h inclusion due to previous changesElijah Newren1-1/+1
2023-04-11pager.h: move declarations for pager.c functions from cache.hElijah Newren1-0/+1
2023-04-11object-name.h: move declarations for object-name.c functions from cache.hElijah Newren1-0/+1
2023-04-04Merge branch 'ab/remove-implicit-use-of-the-repository' into en/header-split-...Junio C Hamano1-6/+6
2023-03-28cocci: apply the "revision.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-1/+1
2023-03-28cocci: apply the "diff.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-1/+1
2023-03-28cocci: apply the "cache.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-4/+4
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-28range-diff: avoid compiler warning when char is unsignedRené Scharfe1-1/+1
2023-02-21range-diff: let '--abbrev' option takes effectTeng Long1-4/+7
2022-12-13diff: mark unused parameters in callbacksJeff King1-4/+8
2022-09-14Merge branch 'ab/unused-annotation'Junio C Hamano1-1/+1
2022-09-14Merge branch 'jk/unused-annotation'Junio C Hamano1-2/+4
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-1/+1
2022-08-26range-diff: optionally accept pathspecsJohannes Schindelin1-1/+1
2022-08-19hashmap: mark unused callback parametersJeff King1-2/+4
2022-06-13Merge branch 'pb/range-diff-with-submodule'Junio C Hamano1-1/+1
2022-06-06range-diff: show submodule changes irrespective of diff.submodulePhilippe Blain1-1/+1
2022-04-13revision.[ch]: provide and start using a release_revisions()Ævar Arnfjörð Bjarmason1-1/+1
2022-03-04range-diff: plug memory leak in read_patches()Ævar Arnfjörð Bjarmason1-17/+12
2022-03-04range-diff: plug memory leak in common invocationÆvar Arnfjörð Bjarmason1-0/+1
2022-01-05i18n: refactor "foo and bar are mutually exclusive"Jean-Noël Avila1-1/+1
2021-09-15Merge branch 'rs/range-diff-avoid-segfault-with-I'Junio C Hamano1-0/+3
2021-09-07range-diff: avoid segfault with -IRené Scharfe1-0/+3
2021-08-30Merge branch 'jk/range-diff-fixes'Junio C Hamano1-16/+13
2021-08-10range-diff: use ssize_t for parsed "len" in read_patches()Jeff King1-1/+1
2021-08-10range-diff: handle unterminated lines in read_patches()Jeff King1-14/+11
2021-08-10range-diff: drop useless "offset" variable from read_patches()Jeff King1-2/+2
2021-07-13Merge branch 'ab/pickaxe-pcre2'Junio C Hamano1-1/+2
2021-05-11xdiff-interface: prepare for allowing early returnÆvar Arnfjörð Bjarmason1-1/+2
2021-04-27hash: provide per-algorithm null OIDsbrian m. carlson1-1/+1
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2021-02-17Merge branch 'js/range-diff-one-side-only'Junio C Hamano1-46/+55
2021-02-06range-diff/format-patch: handle commit ranges other than A..BJohannes Schindelin1-1/+25
2021-02-06range-diff: offer --left-only/--right-only optionsJohannes Schindelin1-3/+8
2021-02-06range-diff: move the diffopt initialization down one layerJohannes Schindelin1-33/+31
2021-02-06range-diff: combine all options in a single data structureJohannes Schindelin1-9/+9
2021-02-04range-diff: simplify code spawning `git log`Johannes Schindelin1-5/+2
2021-02-04range-diff: libify the read_patches() function againJohannes Schindelin1-3/+10
2021-02-04range-diff: avoid leaking memory in two error code pathsJohannes Schindelin1-0/+2
2021-01-27range-diff/format-patch: refactor check for commit rangeJohannes Schindelin1-0/+5
2020-11-11Use new HASHMAP_INIT macro to simplify hashmap initializationElijah Newren1-3/+1
2020-11-02hashmap: provide deallocation function namesElijah Newren1-1/+1
2020-07-30strvec: rename struct fieldsJeff King1-1/+1
2020-07-28strvec: fix indentation in renamed callsJeff King1-14/+14
2020-07-28strvec: convert remaining callers away from argv_array nameJeff King1-5/+5
2020-07-28strvec: rename files from argv-array to strvecJeff King1-1/+1
2020-04-15range-diff: avoid negative string precisionVasil Dimov1-1/+4
2020-04-15range-diff: fix a crash in parsing git-log outputVasil Dimov1-0/+13
2019-12-06range-diff: mark pointers as constDenton Liu1-3/+3
2019-11-21range-diff: pass through --notes to `git log`Denton Liu1-5/+10
2019-11-21range-diff: output `## Notes ##` headerDenton Liu1-0/+6
2019-10-15Merge branch 'ew/hashmap'Junio C Hamano1-5/+5
2019-10-07hashmap: remove type arg from hashmap_{get,put,remove}_entryEric Wong1-3/+1
2019-10-07hashmap: introduce hashmap_free_entriesEric Wong1-1/+1
2019-10-07hashmap: hashmap_{put,remove} return hashmap_entry *Eric Wong1-1/+3
2019-10-07hashmap_remove takes "const struct hashmap_entry *"Eric Wong1-1/+1
2019-10-07hashmap_add takes "struct hashmap_entry *"Eric Wong1-1/+1
2019-10-07hashmap_entry_init takes "struct hashmap_entry *"Eric Wong1-2/+2
2019-10-03range-diff: internally force `diff.noprefix=true`Johannes Schindelin1-1/+2
2019-07-11range-diff: add headers to the outer hunk headerThomas Gummerer1-3/+6
2019-07-11range-diff: add filename to inner diffThomas Gummerer1-2/+13
2019-07-11range-diff: add section header instead of diff headerThomas Gummerer1-7/+27
2019-07-11range-diff: suppress line count in outer diffThomas Gummerer1-0/+1
2019-07-11range-diff: don't remove funcname from inner diffThomas Gummerer1-3/+4
2019-07-11range-diff: split lines manuallyThomas Gummerer1-26/+42
2019-07-11range-diff: fix function parameter indentationThomas Gummerer1-2/+2
2018-11-30format-patch: do not let its diff-options affect --range-diffJunio C Hamano1-1/+5
2018-11-18Merge branch 'ab/range-diff-no-patch'Junio C Hamano1-1/+2
2018-11-14range-diff: make diff option behavior (e.g. --stat) consistentÆvar Arnfjörð Bjarmason1-1/+2
2018-11-13Merge branch 'jk/xdiff-interface'Junio C Hamano1-1/+9
2018-11-12range-diff: fix regression in passing along diff optionsÆvar Arnfjörð Bjarmason1-1/+1
2018-11-05range-diff: use a hunk callbackJeff King1-1/+9
2018-11-02xdiff-interface: provide a separate consume callback for hunksJeff King1-1/+1
2018-10-25range-diff: allow to diff files regardless of submodule configLucas De Marchi1-1/+1
2018-09-17Merge branch 'es/format-patch-rangediff'Junio C Hamano1-3/+23
2018-08-20range-diff: indent special lines as contextStefan Beller1-0/+2
2018-08-20range-diff: make use of different output indicatorsStefan Beller1-1/+19
2018-08-14range-diff: relieve callers of low-level configuration burdenEric Sunshine1-2/+22
2018-08-14range-diff: respect diff_option.file rather than assuming 'stdout'Eric Sunshine1-1/+1
2018-08-13range-diff: left-pad patch numbersJohannes Schindelin1-7/+9
2018-08-13range-diff: use color for the commit pairsJohannes Schindelin1-13/+38
2018-08-13range-diff: do not show "function names" in hunk headersJohannes Schindelin1-0/+6
2018-08-13range-diff: adjust the output of the commit pairsJohannes Schindelin1-9/+50
2018-08-13range-diff: right-trim commit messagesJohannes Schindelin1-0/+1
2018-08-13range-diff: also show the diff between patchesJohannes Schindelin1-3/+31
2018-08-13range-diff: improve the order of the shown commitsJohannes Schindelin1-19/+40
2018-08-13range-diff: first rudimentary implementationJohannes Schindelin1-0/+311