summaryrefslogtreecommitdiff
path: root/builtin
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'sl/diff-files-sparse'Junio C Hamano2023-05-151-0/+4
|\
| * diff-files: integrate with sparse indexShuqi Liang2023-05-091-0/+4
* | Merge branch 'ds/merge-tree-use-config'Junio C Hamano2023-05-151-0/+3
|\ \
| * | merge-tree: load default git configDerrick Stolee2023-05-101-0/+3
* | | Merge branch 'tl/push-branches-is-an-alias-for-all'Junio C Hamano2023-05-151-3/+4
|\ \ \
| * | | push: introduce '--branches' optionTeng Long2023-05-061-3/+4
* | | | Merge branch 'jc/name-rev-deprecate-stdin-further'Junio C Hamano2023-05-151-1/+5
|\ \ \ \
| * | | | name-rev: make --stdin hiddenJohn Cai2023-05-061-1/+5
| |/ / /
* | | | Merge branch 'ds/fsck-bitmap'Junio C Hamano2023-05-151-3/+7
|\ \ \ \
| * | | | fsck: use local repositoryDerrick Stolee2023-05-021-3/+3
| * | | | fsck: verify checksums of all .bitmap filesDerrick Stolee2023-05-021-0/+4
* | | | | Merge branch 'rj/branch-unborn-in-other-worktrees'Junio C Hamano2023-05-151-13/+58
|\ \ \ \ \
| * | | | | branch: avoid unnecessary worktrees traversalsRubén Justo2023-03-271-1/+1
| * | | | | branch: rename orphan branches in any worktreeRubén Justo2023-03-271-2/+4
| * | | | | branch: description for orphan branch errorsRubén Justo2023-03-271-5/+16
| * | | | | branch: use get_worktrees() in copy_or_rename_branch()Rubén Justo2023-03-271-9/+9
| * | | | | branch: test for failures while renaming branchesRubén Justo2023-03-271-0/+32
| | |_|/ / | |/| | |
* | | | | Merge branch 'mh/credential-oauth-refresh-token'Junio C Hamano2023-05-101-0/+3
|\ \ \ \ \
| * | | | | credential: new attribute oauth_refresh_tokenM Hickford2023-04-211-0/+3
| |/ / / /
* | | | | Merge branch 'ob/messages-capitalize-exception'Junio C Hamano2023-05-091-1/+1
|\ \ \ \ \
| * | | | | messages: capitalization and punctuation exceptionsOswald Buddenhagen2023-04-281-1/+1
| |/ / / /
* | | | | Merge branch 'en/header-split-cache-h-part-2'Junio C Hamano2023-05-0941-0/+54
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | commit.h: reduce unnecessary includesElijah Newren2023-04-245-0/+5
| * | | | hash-ll.h: split out of hash.h to remove dependency on repository.hElijah Newren2023-04-2426-0/+33
| * | | | pkt-line.h: move declarations for pkt-line.c functions from cache.hElijah Newren2023-04-245-0/+5
| * | | | copy.h: move declarations for copy.c functions from cache.hElijah Newren2023-04-245-0/+5
| * | | | server-info.h: move declarations for server-info.c functions from cache.hElijah Newren2023-04-243-0/+3
| * | | | symlinks.h: move declarations for symlinks.c functions from cache.hElijah Newren2023-04-242-0/+2
* | | | | Merge branch 'tb/ban-strtok'Junio C Hamano2023-05-021-2/+2
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | string-list: multi-delimiter `string_list_split_in_place()`Taylor Blau2023-04-241-2/+2
* | | | | Merge branch 'tb/enable-cruft-packs-by-default'Junio C Hamano2023-04-282-7/+3
|\ \ \ \ \
| * | | | | builtin/gc.c: make `gc.cruftPacks` enabled by defaultTaylor Blau2023-04-181-5/+1
| * | | | | builtin/gc.c: ignore cruft packs with `--keep-largest-pack`Taylor Blau2023-04-181-1/+1
| * | | | | builtin/repack.c: fix incorrect reference to '-C'Taylor Blau2023-04-181-1/+1
| |/ / / /
* | | | | Merge branch 'ds/fsck-pack-revindex'Junio C Hamano2023-04-271-0/+36
|\ \ \ \ \
| * | | | | fsck: validate .rev file headerDerrick Stolee2023-04-171-2/+8
| * | | | | fsck: create scaffolding for rev-index checksDerrick Stolee2023-04-171-0/+30
* | | | | | Merge branch 'tb/pack-revindex-on-disk'Junio C Hamano2023-04-272-4/+6
|\ \ \ \ \ \ | |/ / / / /
| * | | | | t: invert `GIT_TEST_WRITE_REV_INDEX`Taylor Blau2023-04-132-4/+4
| * | | | | config: enable `pack.writeReverseIndex` by defaultTaylor Blau2023-04-132-0/+2
| |/ / / /
* | | | | Merge branch 'ps/fix-geom-repack-with-alternates'Junio C Hamano2023-04-252-12/+60
|\ \ \ \ \
| * | | | | repack: disable writing bitmaps when doing a local repackPatrick Steinhardt2023-04-141-0/+12
| * | | | | repack: honor `-l` when calculating pack geometryPatrick Steinhardt2023-04-141-2/+11
| * | | | | pack-objects: fix error when same packfile is included and excludedPatrick Steinhardt2023-04-141-5/+3
| * | | | | pack-objects: fix error when packing same pack twicePatrick Steinhardt2023-04-141-0/+2
| * | | | | repack: fix generating multi-pack-index with only non-local packsPatrick Steinhardt2023-04-141-0/+11
| * | | | | repack: fix trying to use preferred pack in alternatesPatrick Steinhardt2023-04-141-5/+21
| | |_|/ / | |/| | |
* | | | | Merge branch 'jk/protocol-cap-parse-fix'Junio C Hamano2023-04-251-1/+1
|\ \ \ \ \
| * | | | | v0 protocol: use size_t for capability length/offsetJeff King2023-04-141-1/+1
| | |/ / / | |/| | |
* | | | | Merge branch 'en/header-split-cache-h'Junio C Hamano2023-04-2568-0/+125
|\ \ \ \ \ | | |_|/ / | |/| | / | |_|_|/ |/| | |