git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-08-14 10:31:37 to 2024-08-15 22:29:12 UTC [more...]

[PATCH 00/13] midx: incremental multi-pack indexes, part two
 2024-08-15 22:29 UTC  (22+ messages)
` [PATCH 01/13] Documentation: describe incremental MIDX bitmaps
` [PATCH 02/13] pack-revindex: prepare for "
` [PATCH 03/13] pack-bitmap.c: open and store incremental bitmap layers
` [PATCH 04/13] pack-bitmap.c: teach `bitmap_for_commit()` about incremental MIDXs
` [PATCH 05/13] pack-bitmap.c: teach `show_objects_for_type()` "
` [PATCH 06/13] pack-bitmap.c: support bitmap pack-reuse with "
` [PATCH 07/13] pack-bitmap.c: teach `rev-list --test-bitmap` about "
` [PATCH 08/13] pack-bitmap.c: compute disk-usage with "
` [PATCH 09/13] pack-bitmap.c: apply pseudo-merge commits "
` [PATCH 10/13] ewah: implement `struct ewah_or_iterator`
` [PATCH 11/13] pack-bitmap.c: keep track of each layer's type bitmaps
` [PATCH 12/13] pack-bitmap.c: use `ewah_or_iterator` for type bitmap iterators
` [PATCH 13/13] midx: implement writing incremental MIDX bitmaps
` [PATCH v2 00/13] midx: incremental multi-pack indexes, part two
  ` [PATCH v2 01/13] Documentation: describe incremental MIDX bitmaps
  ` [PATCH v2 02/13] pack-revindex: prepare for "
  ` [PATCH v2 03/13] pack-bitmap.c: open and store incremental bitmap layers
  ` [PATCH v2 04/13] pack-bitmap.c: teach `bitmap_for_commit()` about incremental MIDXs
  ` [PATCH v2 05/13] pack-bitmap.c: teach `show_objects_for_type()` "
  ` [PATCH v2 06/13] pack-bitmap.c: support bitmap pack-reuse with "
  ` [PATCH v2 07/13] pack-bitmap.c: teach `rev-list --test-bitmap` about "

[PATCH 0/5] Introduce configs for default repo format
 2024-08-15 22:17 UTC  (13+ messages)
` [PATCH 1/5] t0001: exercise initialization with ref formats more thoroughly
` [PATCH 2/5] t0001: delete repositories when object format tests finish
` [PATCH 3/5] setup: merge configuration of repository formats
` [PATCH 4/5] setup: make object format configurable via config
` [PATCH 5/5] setup: make ref storage "

[PATCH 0/2] Add additional trace2 regions for fetch and push
 2024-08-15 20:06 UTC  (5+ messages)
` [PATCH 1/2] fetch: add top-level trace2 regions
` [PATCH 2/2] send-pack: add new tracing regions for push

[PATCH 0/8] git-prompt: support more shells
 2024-08-15 19:53 UTC  (22+ messages)
` [PATCH 6/8] git-prompt: add fallback for shells without $'...'
` [PATCH v2 0/8] git-prompt: support more shells v2
  ` [PATCH v2 1/8] git-prompt: use here-doc instead of here-string
  ` [PATCH v2 2/8] git-prompt: fix uninitialized variable
  ` [PATCH v2 3/8] git-prompt: don't use shell arrays
  ` [PATCH v2 4/8] git-prompt: replace [[...]] with standard code
  ` [PATCH v2 5/8] git-prompt: add some missing quotes
  ` [PATCH v2 6/8] git-prompt: don't use shell $'...'
  ` [PATCH v2 7/8] git-prompt: ta-da! document usage in other shells
  ` [PATCH v2 8/8] git-prompt: support custom 0-width PS1 markers

[GSoC][PATCH 00/10] t: port reftable/block_test.c to the unit testing framework
 2024-08-15 19:11 UTC  (21+ messages)
` [PATCH 01/10] t: move "
` [PATCH 02/10] t-reftable-block: release used block reader
` [PATCH 03/10] t-reftable-block: use reftable_record_equal() instead of check_str()
` [PATCH 04/10] t-reftable-block: use reftable_record_key() instead of strbuf_addstr()
` [PATCH 05/10] t-reftable-block: use block_iter_reset() instead of block_iter_close()
` [PATCH 06/10] t-reftable-block: use xstrfmt() instead of xstrdup()
` [PATCH 07/10] t-reftable-block: remove unnecessary variable 'j'
` [PATCH 08/10] t-reftable-block: add tests for log blocks
` [PATCH 09/10] t-reftable-block: add tests for obj blocks
` [PATCH 10/10] t-reftable-block: add tests for index blocks

[PATCH 0/7] builtin/maintenance: fix auto-detach with non-standard tasks
 2024-08-15 19:11 UTC  (34+ messages)
` [PATCH 2/7] builtin/gc: refactor to read config into structure
` [PATCH 3/7] builtin/gc: fix leaking config values
` [PATCH 4/7] builtin/gc: stop processing log file on signal
` [PATCH 7/7] builtin/maintenance: fix auto-detach with non-standard tasks
` [PATCH v2 0/7] "
  ` [PATCH v2 1/7] config: fix constness of out parameter for `git_config_get_expiry()`
  ` [PATCH v2 2/7] builtin/gc: refactor to read config into structure
  ` [PATCH v2 3/7] builtin/gc: fix leaking config values
  ` [PATCH v2 4/7] builtin/gc: stop processing log file on signal
  ` [PATCH v2 5/7] builtin/gc: add a `--detach` flag
  ` [PATCH v2 6/7] builtin/maintenance: "
  ` [PATCH v2 7/7] run-command: fix detaching when running auto maintenance

[PATCH 0/8] pseudo-merge: avoid empty and non-closed pseudo-merge commits
 2024-08-15 17:31 UTC  (9+ messages)
` [PATCH 1/8] pack-bitmap: initialize `bitmap_writer_init()` with packing_data
` [PATCH 2/8] pack-bitmap: drop redundant args from `bitmap_writer_build_type_index()`
` [PATCH 3/8] pack-bitmap: drop redundant args from `bitmap_writer_build()`
` [PATCH 4/8] pack-bitmap: drop redundant args from `bitmap_writer_finish()`
` [PATCH 5/8] pack-bitmap-write.c: select pseudo-merges even for small bitmaps
` [PATCH 6/8] t/t5333-pseudo-merge-bitmaps.sh: demonstrate empty pseudo-merge groups
` [PATCH 7/8] pseudo-merge.c: do not generate empty pseudo-merge commits
` [PATCH 8/8] pseudo-merge.c: ensure pseudo-merge groups are closed

quiltimport mode detection oddity
 2024-08-15 16:41 UTC  (9+ messages)
        ` [PATCH] apply: canonicalize modes read from patches
            ` [PATCH] t4129: fix racy index when calling chmod after git-add

[RFC PATCH 0/3] Introduce clar testing framework
 2024-08-15 16:21 UTC  (10+ messages)
` [PATCH v4 0/7] "
  ` [PATCH v4 1/7] t: do not pass GIT_TEST_OPTS to unit tests with prove
  ` [PATCH v4 2/7] t: import the clar unit testing framework
  ` [PATCH v4 3/7] t/clar: fix whitespace errors
  ` [PATCH v4 4/7] t/clar: fix compatibility with NonStop
  ` [PATCH v4 5/7] Makefile: wire up the clar unit testing framework
  ` [PATCH v4 6/7] t/unit-tests: convert strvec tests to use clar
  ` [PATCH v4 7/7] t/unit-tests: convert ctype "

[PATCH 0/2] safe.directory clean-up
 2024-08-15 14:43 UTC  (9+ messages)
` [PATCH v2 0/3] "
  ` [PATCH v2 2/3] safe.directory: normalize the configured path

[PATCH 0/2] Re: [BUG REPORT] git-gui invokes prepare-commit-msg hook incorrectly
 2024-08-15 14:36 UTC  (3+ messages)
` [PATCH 1/2] git-gui: strip comments and consecutive empty lines from commit messages

[PATCH v2 0/3] send-email: teach git send-email mode to translate aliases
 2024-08-15 14:29 UTC  (10+ messages)
` [PATCH v2 1/3] t90001-send-email.sh: fix quoting for mailrc --dump-aliases test
` [PATCH v2 2/3] t9001-send-email.sh: update alias list used for pine test

[BUG REPORT] sparseIndexExpanded hint always shows on sparse worktree move
 2024-08-15 14:25 UTC  (2+ messages)

[RFC] Implement ref content consistency check
 2024-08-15 13:37 UTC  (3+ messages)

What's cooking in git.git (Aug 2024, #05; Wed, 14)
 2024-08-15  8:44 UTC  (2+ messages)

[PATCH 00/10] reftable: drop generic `reftable_table` interface
 2024-08-15 11:04 UTC  (12+ messages)
` [PATCH 01/10] reftable/merged: expose functions to initialize iterators
` [PATCH 06/10] reftable/generic: move generic iterator code into iterator interface
` [PATCH 08/10] reftable/dump: drop unused printing functionality

[PATCH] rebase: apply and cleanup autostash when rebase fails to start
 2024-08-15  9:47 UTC  (5+ messages)

[PATCH v2 00/15] reftable: drop generic `reftable_table` interface
 2024-08-15  5:29 UTC  (19+ messages)
` [PATCH v2 01/15] reftable/merged: expose functions to initialize iterators
` [PATCH v2 02/15] reftable/merged: rename `reftable_new_merged_table()`
` [PATCH v2 03/15] reftable/merged: stop using generic tables in the merged table
` [PATCH v2 04/15] reftable/stack: open-code reading refs
` [PATCH v2 05/15] reftable/iter: drop double-checking logic
` [PATCH v2 06/15] reftable/generic: move generic iterator code into iterator interface
` [PATCH v2 07/15] reftable/dump: drop unused `compact_stack()`
` [PATCH v2 08/15] t/helper: inline `reftable_dump_main()`
` [PATCH v2 09/15] t/helper: inline `reftable_reader_print_file()`
` [PATCH v2 10/15] t/helper: inline `reftable_stack_print_directory()`
` [PATCH v2 11/15] t/helper: inline `reftable_table_print()`
` [PATCH v2 12/15] t/helper: inline printing of reftable records
` [PATCH v2 13/15] t/helper: use `hash_to_hex_algop()` to print hashes
` [PATCH v2 14/15] t/helper: refactor to not use `struct reftable_table`
` [PATCH v2 15/15] reftable/generic: drop interface

[PATCH v2 05/20] path: stop relying on `the_repository` when reporting garbage
 2024-08-15  5:26 UTC  (3+ messages)

[PATCH 00/20] Stop using `the_repository` in "config.c"
 2024-08-15  5:13 UTC  (5+ messages)
` [PATCH v2 "

[PATCH 1/1] git jump: support show
 2024-08-15  0:42 UTC  (3+ messages)

[PATCH] howto-maintain: mention preformatted docs
 2024-08-14 23:03 UTC 

A note from the maintainer
 2024-08-14 22:44 UTC 

[PATCH] git-svn: mention `svn:globalignores` in help+docs
 2024-08-14 22:12 UTC  (7+ messages)
` [PATCH v2] git-svn: mention `svn:global-ignores` "
  ` [PATCH v3] "

[PATCH] format-patch: add support for mailmap file
 2024-08-14 21:53 UTC  (7+ messages)

[PATCH 0/1] revision: fix reachable objects being gc'ed in no blob clone repo
 2024-08-14 19:30 UTC  (2+ messages)

[GSoC][PATCH] t: migrate helper/test-urlmatch-normalization to unit tests
 2024-08-14 16:52 UTC  (6+ messages)
` [GSoC][PATCH v2] t: migrate t0110-urlmatch-normalization to the new framework
  ` [GSoC][PATCH v3] "

[PATCH 00/22] Memory leak fixes (pt.4)
 2024-08-14 15:28 UTC  (6+ messages)
` [PATCH v3 "
  ` [PATCH v3 22/22] builtin/diff: free symmetric diff members

Git exclude patterns with full static file, without globs, fails to capture the exclusion (the file is added anyway
 2024-08-14 13:26 UTC 

[GSoC][PATCH v2 0/4] t: port reftable/readwrite_test.c to the unit testing framework
 2024-08-14 13:08 UTC  (6+ messages)
` [GSoC][PATCH v3 "
  ` [PATCH v3 1/4] t: move "

Adding nested repository with slash adds files instead of gitlink
 2024-08-14 12:00 UTC  (6+ messages)

[PATCH v2 0/3] git for-each-ref: is-base atom and base branches
 2024-08-14 10:31 UTC  (4+ messages)
` [PATCH v3 0/4] "
  ` [PATCH v3 3/4] for-each-ref: add 'is-base' token
  ` [PATCH v3 4/4] p1500: add is-base performance tests


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).