[PATCH RFC 00/11] Introduce git-history(1) command for easy history editing
2025-11-20 7:07 UTC (24+ messages)
` [PATCH v6 "
` [PATCH v6 02/11] replay: extract logic to pick commits
` [PATCH v6 03/11] replay: stop using `the_repository`
` [PATCH v6 04/11] builtin: add new "history" command
` [PATCH v6 05/11] builtin/history: implement "reword" subcommand
` [PATCH v6 06/11] add-patch: split out header from "add-interactive.h"
` [PATCH v6 07/11] add-patch: split out `struct interactive_options`
` [PATCH v6 08/11] add-patch: remove dependency on "add-interactive" subsystem
` [PATCH v6 09/11] add-patch: add support for in-memory index patching
` [PATCH v6 10/11] cache-tree: allow writing in-memory index as tree
` [PATCH v6 11/11] builtin/history: implement "split" subcommand
`git config get --type=path` results in segmentation fault on value starting with `:(optional)`
2025-11-20 6:46 UTC
[BUG] `git describe` doesn't traverse the graph in topological order
2025-11-20 2:48 UTC (11+ messages)
What's cooking in git.git (Nov 2025, #06; Wed, 19)
2025-11-20 0:55 UTC
[PATCH 00/14] SHA-1/SHA-256 interoperability, part 2
2025-11-19 23:37 UTC (18+ messages)
` [PATCH v2 00/15] "
` [PATCH v2 05/15] rust: add a hash algorithm abstraction
` [PATCH v2 07/15] rust: add additional helpers for ObjectID
` [PATCH v2 09/15] write-or-die: add an fsync component for the object map
` [PATCH v2 10/15] hash: expose hash context functions to Rust
` [PATCH v2 11/15] rust: add a build.rs script for tests
` [PATCH v2 12/15] rust: add functionality to hash an object
` [PATCH v2 13/15] rust: add a new binary object map format
` [PATCH v2 14/15] rust: add a small wrapper around the hashfile code
` [PATCH v2 15/15] object-file-convert: always make sure object ID algo is valid
[PATCH] fetch: fix non-conflicting tags not being committed
2025-11-19 23:08 UTC (13+ messages)
` [PATCH v6 0/3] "
` [PATCH v6 1/3] fetch: extract out reference committing logic
` [PATCH v6 2/3] fetch: fix non-conflicting tags not being committed
` [PATCH v6 3/3] fetch: fix failed batched updates skipping operations
` [PATCH v7 0/3] fetch: fix non-conflicting tags not being committed
` [PATCH v7 1/3] fetch: extract out reference committing logic
` [PATCH v7 2/3] fetch: fix non-conflicting tags not being committed
` [PATCH v7 3/3] fetch: fix failed batched updates skipping operations
[PATCH 0/2] refs: allow setting the reference directory
2025-11-19 23:01 UTC (5+ messages)
` [PATCH 1/2] refs: support obtaining ref_store for given dir
` [PATCH 2/2] refs: add GIT_REF_URI to specify reference backend and directory
[PATCH 0/3] doc: convert fetch pull push to synopsis style
2025-11-19 21:40 UTC (4+ messages)
` [PATCH 1/3] doc: convert git fetch "
` [PATCH 2/3] doc: convert git pull "
` [PATCH 3/3] doc: convert git push "
[PATCH 00/13] Centralize management of object database sources
2025-11-19 21:27 UTC (17+ messages)
` [PATCH 01/13] path: move `enter_repo()` into "setup.c"
` [PATCH 02/13] setup: convert `set_git_dir()` to have file scope
` [PATCH 03/13] odb: adopt logic to close object databases
` [PATCH 04/13] odb: refactor `odb_clear()` to `odb_free()`
` [PATCH 05/13] odb: move logic to disable ref updates into repo
` [PATCH 06/13] oidset: introduce `oidset_equal()`
` [PATCH 07/13] builtin/index-pack: fix deferred fsck outside repos
` [PATCH 08/13] t/helper: stop setting up `the_repository` repeatedly
` [PATCH 09/13] http-push: stop setting up `the_repository` for each reference
` [PATCH 10/13] odb: handle initialization of sources in `odb_new()`
` [PATCH 11/13] chdir-notify: add function to unregister listeners
` [PATCH 12/13] odb: handle changing a repository's commondir
` [PATCH 13/13] odb: handle recreation of quarantine directories
[PATCH 0/9] Encode submodule gitdir names to avoid conflicts
2025-11-19 21:10 UTC (9+ messages)
` [PATCH v5 0/7] "
` [PATCH v5 1/7] submodule--helper: use submodule_name_to_gitdir in add_submodule
` [PATCH v5 2/7] builtin/credential-store: move is_rfc3986_unreserved to url.[ch]
` [PATCH v5 3/7] submodule: always validate gitdirs inside submodule_name_to_gitdir
` [PATCH v5 4/7] submodule: add extension to encode gitdir paths
` [PATCH v5 5/7] submodule: fix case-folding gitdir filesystem colisions
` [PATCH v5 6/7] submodule: use hashed name for gitdir
` [PATCH v5 7/7] meson/Makefile: allow setting submodule encoding at build time
[PATCH v3] last-modified: implement faster algorithm
2025-11-19 20:06 UTC (5+ messages)
` [PATCH v4] "
` t8020-last-modified.sh failure on s390x (Re: [PATCH v4] last-modified: implement faster algorithm)
[PATCH 00/18] Refactor object read streams to work via object sources
2025-11-19 20:04 UTC (29+ messages)
` [PATCH 01/18] streaming: rename `git_istream` into `odb_read_stream`
` [PATCH 02/18] streaming: drop the `open()` callback function
` [PATCH 03/18] streaming: propagate final object type via the stream
` [PATCH 04/18] streaming: explicitly pass packfile info when streaming a packed object
` [PATCH 05/18] streaming: allocate stream inside the backend-specific logic
` [PATCH 06/18] streaming: create structure for in-core object streams
` [PATCH 07/18] streaming: create structure for loose "
` [PATCH 08/18] streaming: create structure for packed "
` [PATCH 09/18] streaming: create structure for filtered "
` [PATCH 10/18] streaming: move zlib stream into backends
` [PATCH 11/18] packfile: introduce function to read object info from a store
` [PATCH 12/18] streaming: rely on object sources to create object stream
` [PATCH 13/18] streaming: get rid of `the_repository`
` [PATCH 14/18] streaming: make the `odb_read_stream` definition public
` [PATCH 15/18] streaming: move logic to read loose objects streams into backend
` [PATCH 16/18] streaming: move logic to read packed "
` [PATCH 17/18] streaming: refactor interface to be object-database-centric
` [PATCH 18/18] streaming: move into object database subsystem
[PATCH/RFC 0/4] config: read both home and xdg files for --global
2025-11-19 18:39 UTC (10+ messages)
` [PATCH/RFC 1/4] cleanup_path: force forward slashes on Windows
` [PATCH/RFC 2/4] config: test home and xdg files in `list --global`
` [PATCH/RFC 3/4] config: read global scope via config_sequence
[BUG] Test Failure 2.52.0, t8020.16,19
2025-11-19 16:37 UTC (3+ messages)
How dangerous is --committer-date-is-author-date these days?
2025-11-19 16:27 UTC (7+ messages)
` [PATCH] doc: warn against --committer-date-is-author-date
[PATCH] repo: add --all to git-repo-info
2025-11-19 14:33 UTC (13+ messages)
` [PATCH v4 0/2] "
` [PATCH v4 2/2] "
` [PATCH v5 0/2] "
` [PATCH v5 1/2] repo: factor out field printing to dedicated function
` [PATCH v5 2/2] repo: add --all to git-repo-info
What is the reason behind not hiding git worktrees from git?
2025-11-19 8:13 UTC (8+ messages)
[PATCH 1/2] doc: git-worktree: Link to examples
2025-11-19 7:19 UTC (7+ messages)
` [PATCH v2 2/2] doc: git-worktree: Add side by side branch checkout example
[PATCH 0/2] worktree list: fix column alignment
2025-11-19 7:09 UTC (7+ messages)
` [PATCH 1/2] worktree list: fix column spacing
` [PATCH 2/2] worktree list: quote paths
[PATCH v3 00/10] Xdiff cleanup part2
2025-11-19 4:14 UTC (19+ messages)
` [PATCH v4 "
` [PATCH v4 03/10] xdiff: make xrecord_t.ptr a uint8_t instead of char
` [PATCH v5 00/10] Xdiff cleanup part2
` [PATCH v5 01/10] doc: define unambiguous type mappings across C and Rust
` [PATCH v5 02/10] xdiff: use ptrdiff_t for dstart/dend
` [PATCH v5 03/10] xdiff: make xrecord_t.ptr a uint8_t instead of char
` [PATCH v5 04/10] xdiff: use size_t for xrecord_t.size
` [PATCH v5 05/10] xdiff: use unambiguous types in xdl_hash_record()
` [PATCH v5 06/10] xdiff: split xrecord_t.ha into line_hash and minimal_perfect_hash
` [PATCH v5 07/10] xdiff: make xdfile_t.nrec a size_t instead of long
` [PATCH v5 08/10] xdiff: make xdfile_t.nreff "
` [PATCH v5 09/10] xdiff: change rindex from long to size_t in xdfile_t
` [PATCH v5 10/10] xdiff: rename rindex -> reference_index
[PATCH] wrapper: simplify xmkstemp()
2025-11-18 23:08 UTC (5+ messages)
A note from the maintainer
2025-11-18 22:23 UTC
Interactive rebase bug involving merge commits
2025-11-18 19:52 UTC (2+ messages)
[PATCH 0/3] fast-import: add 'strip-if-invalid' mode to --signed-commits=<mode>
2025-11-18 19:04 UTC (6+ messages)
` [PATCH v2 "
[PATCH] win32: pthread_cond_wait should return a value
2025-11-18 18:17 UTC (3+ messages)
` [PATCH v2] "
[PATCH] win32: remove handling for impossible cases in win32_pthread_join
2025-11-18 17:02 UTC (5+ messages)
` [PATCH v2] "
` [PATCH v3] "
[PATCH] win32: return error if SleepConditionVariableCS fails
2025-11-18 15:41 UTC (2+ messages)
` [PATCH v2] "
[PATCH 0/9] asan bonanza
2025-11-18 14:30 UTC (24+ messages)
` [PATCH 2/9] pack-bitmap: handle name-hash lookups in incremental bitmaps
` [PATCH 3/9] Makefile: turn on NO_MMAP when building with ASan
` [PATCH 4/9] cache-tree: avoid strtol() on non-string buffer
` [PATCH v2 0/9] asan bonanza
` [PATCH v2 1/9] compat/mmap: mark unused argument in git_munmap()
` [PATCH v2 2/9] pack-bitmap: handle name-hash lookups in incremental bitmaps
` [PATCH v2 3/9] Makefile: turn on NO_MMAP when building with ASan
` [PATCH v2 4/9] cache-tree: avoid strtol() on non-string buffer
` [PATCH v2 5/9] fsck: assert newline presence in fsck_ident()
` [PATCH v2 6/9] fsck: avoid strcspn() "
` [PATCH v2 7/9] fsck: remove redundant date timestamp check
` [PATCH v2 8/9] fsck: avoid parse_timestamp() on buffer that isn't NUL-terminated
` [PATCH v2 9/9] t: enable ASan's strict_string_checks option
[PATCH] test-mktemp: plug memory and descriptor leaks
2025-11-18 12:21 UTC
What's cooking in git.git (Nov 2025, #04; Fri, 14)
2025-11-18 9:58 UTC (5+ messages)
[PATCH] osxkeychain: avoid incorrectly skipping store operation
2025-11-18 9:57 UTC (3+ messages)
[PATCH] mingw: avoid the comma operator
2025-11-18 9:49 UTC (3+ messages)
[PATCH] ci(dockerized): do show the result of failing tests again
2025-11-18 9:36 UTC (2+ messages)
[PATCH 0/2] meson-windows-test ci output fixes
2025-11-18 9:35 UTC (3+ messages)
` [PATCH 1/2] unit-test: ignore --no-chain-lint
` [PATCH 2/2] ci(windows-meson-test): handle options and output like other test jobs
[PATCH] doc: commit: link to git-status(1) on all format options
2025-11-18 9:09 UTC (2+ messages)
[PATCH] l10n: bump actions/setup-go from 5 to 6
2025-11-18 7:41 UTC (3+ messages)
` [PATCH] ci: "
[PATCH] diff: "lisp" userdiff_driver
2025-11-18 4:38 UTC (5+ messages)
[ANNOUNCE] Git for Windows 2.52.0
2025-11-18 0:33 UTC
What is the reason behind not hiding git worktrees from git?
2025-11-17 22:57 UTC (8+ messages)
page: next (older)
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).