git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-09-20 16:44:58 to 2025-09-23 10:17:15 UTC [more...]

[PATCH 00/16] packfile: carve out a new packfile store
 2025-09-23 10:17 UTC  (4+ messages)
` [PATCH v6 00/15] "
  ` [PATCH v6 01/15] packfile: introduce a new `struct packfile_store`
  ` [PATCH v6 02/15] odb: move list of packfiles into "

[PATCH 0/7] RFC: Accelerate xdiff and begin its rustification
 2025-09-23  9:57 UTC  (5+ messages)
` [PATCH 6/7] xdiff: conditionally use Rust's implementation of xxhash
      ` gitoxide-compatible licensing of Git's Rust code, was "

[PATCH RFC 0/3] Introduce Rust and announce that it will become mandatorty
 2025-09-23  9:45 UTC  (13+ messages)
` [PATCH v6 0/9] Introduce Rust and announce that it will become mandatory
  ` [PATCH v6 1/9] meson: add infrastructure to build internal Rust library
  ` [PATCH v6 2/9] Makefile: reorder sources after includes
  ` [PATCH v6 3/9] Makefile: introduce infrastructure to build internal Rust library
  ` [PATCH v6 4/9] help: report on whether or not Rust is enabled
  ` [PATCH v6 5/9] varint: use explicit width for integers
  ` [PATCH v6 6/9] varint: reimplement as test balloon for Rust
  ` [PATCH v6 7/9] BreakingChanges: announce Rust becoming mandatory
  ` [PATCH v6 8/9] ci: convert "pedantic" job into full build with breaking changes
  ` [PATCH v6 9/9] ci: enable Rust for breaking-changes jobs

[PATCH v2 0/4] enhance string-list API to fix sign compare warnings
 2025-09-23  9:44 UTC  (6+ messages)
` [PATCH v2 2/4] string-list: replace negative index encoding with "exact_match" parameter
` [PATCH v2 3/4] string-list: change "string_list_find_insert_index" return type to "size_t"

How do i get news of git releases
 2025-09-23  9:43 UTC  (7+ messages)

[PATCH 4/4] refs: do not clobber dangling symrefs
 2025-09-23  9:36 UTC  (7+ messages)

[PATCH v5 00/15] packfile: carve out a new packfile store
 2025-09-23  9:35 UTC  (10+ messages)
` [PATCH v5 01/15] packfile: introduce a new `struct packfile_store`
` [PATCH v5 04/15] odb: move packfile map into "
` [PATCH v5 09/15] packfile: split up responsibilities of `reprepare_packed_git()`

[PATCH] rebase -i: use same commit's message and date with f -C
 2025-09-23  9:21 UTC  (2+ messages)

[PATCH] lockfile: add case insensitive filesystem note
 2025-09-23  9:03 UTC  (4+ messages)

[PATCH RFC v4 0/9] Introduce Rust and announce that it will become mandatory
 2025-09-23  8:53 UTC  (7+ messages)
` [PATCH RFC v4 7/9] BreakingChanges: announce Rust becoming mandatory
          ` LTS "lieutenant", was "

[RFC] doc: check-docs and WITH_BREAKING_CHANGES
 2025-09-23  8:03 UTC  (2+ messages)

What's cooking in git.git (Sep 2025, #09; Mon, 22)
 2025-09-23  7:42 UTC  (3+ messages)

[PATCH 00/15] Introduce rust: In xdiff
 2025-09-23  5:11 UTC  (31+ messages)
` [PATCH v2 00/18] "
  ` [PATCH v2 02/18] make: add -fPIE flag

[PATCH RFC 0/3] Introduce Rust and announce that it will become mandatorty
 2025-09-23  5:05 UTC  (7+ messages)

[PATCH v5 0/9] Introduce Rust and announce that it will become mandatory
 2025-09-23  4:54 UTC  (15+ messages)
` [PATCH v5 7/9] BreakingChanges: announce Rust becoming mandatory

[PATCH 0/4] builtin/repo: introduce stats subcommand
 2025-09-23  2:57 UTC  (5+ messages)
` [PATCH 1/4] "
` [PATCH 2/4] builtin/repo: add object counts in stats output
` [PATCH 3/4] builtin/repo: add keyvalue format for stats
` [PATCH 4/4] builtin/repo: add nul "

[PATCH v2 00/10] Use rust types in xdiff
 2025-09-23  1:30 UTC  (50+ messages)
` [PATCH v3 00/10] Cleanup xdfile_t and xrecord_t "
  ` [PATCH v3 01/10] xdiff: delete static forward declarations in xprepare
  ` [PATCH v3 02/10] xdiff: delete local variables and initialize/free xdfile_t directly
  ` [PATCH v3 04/10] xdiff: delete xdl_get_rec() in xemit
  ` [PATCH v3 05/10] xdiff: delete struct diffdata_t
  ` [PATCH v3 07/10] xdiff: delete fields ha, line, size in xdlclass_t in favor of an xrecord_t
  ` [PATCH v3 09/10] xdiff: delete rchg aliasing
  ` [PATCH v3 10/10] xdiff: treat xdfile_t.rchg like an enum
  ` [PATCH v4 00/12] Cleanup xdfile_t and xrecord_t in xdiff
    ` [PATCH v4 01/12] xdiff: delete static forward declarations in xprepare
    ` [PATCH v4 02/12] xdiff: delete local variables and initialize/free xdfile_t directly
    ` [PATCH v4 03/12] xdiff: delete unnecessary fields from xrecord_t and xdfile_t
    ` [PATCH v4 04/12] xdiff: delete superfluous function xdl_get_rec() in xemit
    ` [PATCH v4 05/12] xdiff: delete superfluous local variables that alias fields in xrecord_t
    ` [PATCH v4 06/12] xdiff: delete struct diffdata_t
    ` [PATCH v4 07/12] xdiff: delete redundant array xdfile_t.ha
    ` [PATCH v4 08/12] xdiff: delete fields ha, line, size in xdlclass_t in favor of an xrecord_t
    ` [PATCH v4 09/12] xdiff: delete chastore from xdfile_t
    ` [PATCH v4 10/12] xdiff: delete rchg aliasing
    ` [PATCH v4 11/12] xdiff: use bool literals for xdfile_t.rchg
    ` [PATCH v4 12/12] xdiff: refactor 'char *rchg' to 'bool *changed' in xdfile_t

I still use this/these
 2025-09-23  0:55 UTC  (3+ messages)

Could Git be smarter about object reuse?
 2025-09-23  0:54 UTC  (6+ messages)

[PATCH 0/6] fixing double-frees and leaks via setup_revisions()
 2025-09-23  0:48 UTC  (8+ messages)
` [PATCH 1/6] stash: tell setup_revisions() to free our allocated strings

[PATCH 0/2] format-patch: handle range-diff on notes correctly for single patches
 2025-09-22 22:01 UTC  (5+ messages)
` [PATCH 1/2] revision: add rdiff_other_arg to rev_info
` [PATCH 2/2] format-patch: handle range-diff on notes correctly for single patches

[PATCH 0/9] SHA-1/SHA-256 interoperability, part 1
 2025-09-22 21:38 UTC  (12+ messages)
` [PATCH 1/9] docs: update pack index v3 format
` [PATCH 3/9] docs: reflect actual double signature for tags
` [PATCH 7/9] fsck: consider gpgsig headers expected in tags

[PATCH] t/unit-tests: update to 10e96bc
 2025-09-22 19:09 UTC  (2+ messages)

[PATCH v3 0/5] builtin/config: bug fixes for "get" subcommand with "--type=color"
 2025-09-22 16:29 UTC  (5+ messages)
` [PATCH v3 4/5] builtin/config: special-case retrieving colors without a key

[PATCH RFC 0/3] Introduce Rust and announce that it will become mandatorty
 2025-09-22 16:21 UTC  (13+ messages)

[PATCH v2 0/4] Teach git-stash to use --index from config
 2025-09-22 14:11 UTC  (7+ messages)
` [PATCH v3 "
  ` [PATCH v3 1/4] t3903: reduce dependencies on previous tests
  ` [PATCH v3 2/4] t3905: remove unneeded blank line
  ` [PATCH v3 3/4] stash: refactor private config globals
  ` [PATCH v3 4/4] stash: honor stash.index in apply, pop modes

[QUESTION] how to find options set by scalar?
 2025-09-22 13:36 UTC  (7+ messages)

[PATCH 0/5] builtin/config: bug fixes for "get" subcommand with "--type=color"
 2025-09-22 13:06 UTC  (7+ messages)
` [PATCH v4 "
  ` [PATCH v4 1/5] t1300: write test expectations in the test's body
  ` [PATCH v4 2/5] t1300: small style fixups
  ` [PATCH v4 3/5] builtin/config: do not die in `get_color()`
  ` [PATCH v4 4/5] builtin/config: special-case retrieving colors without a key
  ` [PATCH v4 5/5] builtin/config: do not spawn pager when printing color codes

[PATCH v2 0/2] gitk: make the 'Tags and Heads' window geometry sticky
 2025-09-22 10:16 UTC  (6+ messages)
` [PATCH v2 1/2] gitk: fix the position of the main main window on initialize
` [PATCH v2 2/2] gitk: make Tags and Heads window geometry sticky

[BUG] gitk assumes availability of `osascript` on macos
 2025-09-22  9:30 UTC  (4+ messages)

git whatchanged: fatal: refusing to run without --i-still-use-this
 2025-09-22  7:30 UTC  (3+ messages)

041418236D4580017291203053944117783F86FD54E3D85C
 2025-09-21 21:26 UTC 

[PATCH 0/3] Fix curl_easy_setopt() parameter type problem, again
 2025-09-21 15:09 UTC  (7+ messages)
` [PATCH 1/3] http: offer to cast `size_t` to `curl_off_t` safely
` [PATCH 2/3] imap-send: be more careful when casting to `curl_off_t`
` [PATCH 3/3] http-push: avoid new compile error

[RFC] git-rebase-clean: mitigating a “semantic conflict cascade” during rebase
 2025-09-21 14:06 UTC  (7+ messages)

Hello Angel
 2025-09-20 22:56 UTC 


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).