aboutsummaryrefslogtreecommitdiffstats
path: root/add-interactive.c
AgeCommit message (Expand)AuthorFilesLines
7 daysadd-interactive: plug a leak in get_untracked_filesRubén Justo1-0/+1
2023-09-07Merge branch 'jk/unused-post-2.42'Junio C Hamano1-4/+4
2023-08-29add-interactive: mark unused callback parametersJeff King1-4/+4
2023-08-21diff: spell DIFF_INDEX_CACHED out when calling run_diff_index()Junio C Hamano1-1/+1
2023-06-21diff.h: remove unnecessary include of oidset.hElijah Newren1-0/+2
2023-06-21cache.h: remove this no-longer-used headerElijah Newren1-1/+1
2023-06-21read-cache*.h: move declarations for read-cache.c functions from cache.hElijah Newren1-0/+1
2023-06-21preload-index.h: move declarations for preload-index.c from elsewhereElijah Newren1-0/+1
2023-04-24commit.h: reduce unnecessary includesElijah Newren1-0/+1
2023-04-04Merge branch 'ab/remove-implicit-use-of-the-repository' into en/header-split-...Junio C Hamano1-1/+1
2023-03-28libs: use "struct repository *" argument, not "the_repository"Ævar Arnfjörð Bjarmason1-1/+1
2023-03-28cocci: apply the "revision.h" part of "the_repository.pending"Ævar Arnfjörð Bjarmason1-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-11-21read-cache API & users: make discard_index() return voidÆvar Arnfjörð Bjarmason1-4/+4
2022-10-30use child_process members "args" and "env" directlyRené Scharfe1-5/+4
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-07-02Merge branch 'js/add-i-delete'Junio C Hamano1-2/+10
2022-06-28add --interactive: allow `update` to stage deleted filesJohannes Schindelin1-2/+10
2022-04-13revisions API: have release_revisions() release "prune_data"Ævar Arnfjörð Bjarmason1-2/+0
2022-04-13revisions API users: add straightforward release_revisions()Ævar Arnfjörð Bjarmason1-0/+1
2022-03-21Merge branch 'pw/single-key-interactive'Junio C Hamano1-0/+2
2022-02-23add -p: disable stdin buffering when interactive.singlekey is setPhillip Wood1-0/+2
2022-02-16diff.[ch]: have diff_free() call clear_pathspec(opts.pathspec)Ævar Arnfjörð Bjarmason1-3/+3
2021-09-27*.h: move some *_INIT to designated initializersÆvar Arnfjörð Bjarmason1-2/+6
2021-03-19Merge branch 'rs/xcalloc-takes-nelem-first'Junio C Hamano1-2/+2
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2021-03-08fix xcalloc() argument orderRené Scharfe1-3/+3
2020-12-08Merge branch 'js/add-i-color-fix'Junio C Hamano1-15/+23
2020-11-16add -p: prefer color.diff.context over color.diff.plainJohannes Schindelin1-2/+4
2020-11-16add -i (built-in): use the same indentation as the Perl versionJohannes Schindelin1-1/+1
2020-11-11add -i (built-in): use correct names to load color.diff.* configJohannes Schindelin1-10/+13
2020-11-11add -i (built-in): prevent the `reset` "color" from being configuredJohannes Schindelin1-1/+3
2020-11-10add -i (built-in): send error messages to stderrJohannes Schindelin1-1/+1
2020-11-10add -i (built-in): do show an error message for incorrect inputsJohannes Schindelin1-1/+2
2020-11-02hashmap: provide deallocation function namesElijah Newren1-1/+1
2020-07-30strvec: rename struct fieldsJeff King1-2/+2
2020-07-28strvec: fix indentation in renamed callsJeff King1-5/+5
2020-07-28strvec: convert more callers away from argv_array nameJeff King1-7/+7
2020-04-10interactive: refactor code asking the user for interactive inputJohannes Schindelin1-2/+2
2020-02-05Merge branch 'js/add-p-leftover-bits'Junio C Hamano1-0/+19
2020-02-05Merge branch 'js/patch-mode-in-others-in-c'Junio C Hamano1-1/+1
2020-01-30Merge branch 'js/builtin-add-i-cmds'Junio C Hamano1-3/+6
2020-01-16built-in add -i: accept open-ended ranges againJohannes Schindelin1-1/+4
2020-01-16built-in add -i: do not try to `patch`/`diff` an empty list of filesJohannes Schindelin1-2/+2
2020-01-15built-in add -p: respect the `interactive.singlekey` config settingJohannes Schindelin1-0/+2
2020-01-15built-in add -p: handle diff.algorithmJohannes Schindelin1-0/+5
2020-01-15built-in add -p: support interactive.diffFilterJohannes Schindelin1-0/+12
2019-12-21built-in add -p: prepare for patch modes other than "stage"Johannes Schindelin1-1/+1
2019-12-13built-in add -p: implement hunk editingJohannes Schindelin1-0/+6
2019-12-13built-in add -p: adjust hunk headers as neededJohannes Schindelin1-11/+3
2019-12-13built-in add -i: wire up the new C code for the `patch` commandJohannes Schindelin1-3/+6
2019-12-01built-in add -i: offer the `quit` commandJohannes Schindelin1-5/+11
2019-12-01built-in add -i: re-implement the `diff` commandJohannes Schindelin1-0/+42
2019-12-01built-in add -i: implement the `patch` commandJohannes Schindelin1-7/+84
2019-12-01built-in add -i: re-implement `add-untracked` in CJohannes Schindelin1-0/+91
2019-12-01built-in add -i: re-implement `revert` in CJohannes Schindelin1-0/+109
2019-12-01built-in add -i: implement the `update` commandJohannes Schindelin1-20/+110
2019-12-01built-in add -i: prepare for multi-selection commandsJohannes Schindelin1-25/+89
2019-12-01built-in add -i: allow filtering the modified files listJohannes Schindelin1-7/+26
2019-12-01add-interactive: make sure to release `rev.prune_data`Johannes Schindelin1-0/+3
2019-11-18built-in add -i: implement the `help` commandSlavica Đukić1-0/+21
2019-11-18built-in add -i: use color in the main loopSlavica Đukić1-6/+29
2019-11-18built-in add -i: support `?` (prompt help)Johannes Schindelin1-1/+21
2019-11-18built-in add -i: show unique prefixes of the commandsJohannes Schindelin1-11/+177
2019-11-18built-in add -i: implement the main loopJohannes Schindelin1-2/+135
2019-11-14built-in add -i: color the header in the `status` commandSlavica Đukić1-4/+37
2019-11-14built-in add -i: implement the `status` commandDaniel Ferreira1-1/+250
2019-11-14Start to implement a built-in version of `git add --interactive`Johannes Schindelin1-0/+7