git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-09-17 18:28:09 to 2025-09-19 20:00:43 UTC [more...]

[PATCH 00/15] Introduce rust: In xdiff
 2025-09-19 20:00 UTC  (27+ messages)
` [PATCH v2 00/18] "
  ` [PATCH v2 01/18] cleanup: rename variables that collide with Rust primitive type names
  ` [PATCH v2 02/18] make: add -fPIE flag
  ` [PATCH v2 03/18] make: merge xdiff lib into libgit.a
  ` [PATCH v2 04/18] make: merge reftable "
  ` [PATCH v2 07/18] build: introduce rust
  ` [PATCH v2 13/18] build-helper: link against libgit.a and any other required C libraries

[BUG] git stash show -p with invalid option aborts with double-free in show_stash() (strvec_clear)
 2025-09-19 19:56 UTC  (9+ messages)

Git Stash Synchronization - Best Workflow?
 2025-09-19 19:54 UTC  (9+ messages)

git whatchanged: fatal: refusing to run without --i-still-use-this
 2025-09-19 19:43 UTC  (2+ messages)

[PATCH 0/9] SHA-1/SHA-256 interoperability, part 1
 2025-09-19 19:15 UTC  (13+ messages)
` [PATCH 1/9] docs: update pack index v3 format
` [PATCH 2/9] docs: update offset order for pack index v3
` [PATCH 3/9] docs: reflect actual double signature for tags
` [PATCH 4/9] docs: improve ambiguous areas of pack format documentation
` [PATCH 5/9] docs: add documentation for loose objects
` [PATCH 6/9] rev-parse: allow printing compatibility hash
` [PATCH 7/9] fsck: consider gpgsig headers expected in tags
` [PATCH 8/9] Allow specifying compatibility hash
` [PATCH 9/9] t: add a prerequisite for a "

[GSoC][PATCH v2 0/5] Add refs optimize subcommand
 2025-09-19 18:43 UTC  (26+ messages)
` [GSoC][PATCH v3 0/9] "
  ` [GSoC][PATCH v3 1/9] refs: add a generic 'optimize' API
  ` [GSoC][PATCH v3 2/9] files-backend: implement 'optimize' action
  ` [GSoC][PATCH v3 3/9] reftable-backend: "
  ` [GSoC][PATCH v3 4/9] builtin/pack-refs: convert to use the generic refs_optimize() API
  ` [GSoC][PATCH v3 5/9] builtin/pack-refs: factor out core logic into a shared library
  ` [GSoC][GSoC][PATCH v3 6/9] doc: pack-refs: factor out common options
  ` [GSoC][PATCH v3 7/9] builtin/refs: add optimize subcommand
  ` [GSoC][PATCH v3 8/9] t0601: refactor tests to be shareable
  ` [GSoC][PATCH v3 9/9] t: add test for git refs optimize subcommand
  ` [GSoC][PATCH v4 0/9] Add "
    ` [GSoC][PATCH v4 1/9] refs: add a generic 'optimize' API
    ` [GSoC][PATCH v4 2/9] files-backend: implement 'optimize' action
    ` [GSoC][PATCH v4 3/9] reftable-backend: "
    ` [GSoC][PATCH v4 4/9] builtin/pack-refs: convert to use the generic refs_optimize() API
    ` [GSoC][PATCH v4 5/9] builtin/pack-refs: factor out core logic into a shared library
    ` [GSoC][PATCH v4 6/9] doc: pack-refs: factor out common options
    ` [GSoC][PATCH v4 7/9] builtin/refs: add optimize subcommand
    ` [GSoC][PATCH v4 8/9] t0601: refactor tests to be shareable
    ` [GSoC][PATCH v4 9/9] t: add test for git refs optimize subcommand

[PATCH RFC 0/3] Introduce Rust and announce that it will become mandatorty
 2025-09-19 18:41 UTC  (12+ messages)
` [PATCH v5 0/9] Introduce Rust and announce that it will become mandatory
  ` [PATCH v5 7/9] BreakingChanges: announce Rust becoming mandatory

[PATCH RFC 0/3] Introduce Rust and announce that it will become mandatorty
 2025-09-19 18:14 UTC  (3+ messages)

[QUESTION] how to find options set by scalar?
 2025-09-19 15:38 UTC  (5+ messages)

[Bug] git fetch --dry-run --filter makes changes to .git/config
 2025-09-19 15:31 UTC  (10+ messages)

[PATCH 00/17] Use rust types in xdiff
 2025-09-19 15:16 UTC  (25+ messages)
` [PATCH v2 00/10] "
  ` [PATCH v2 01/10] xdiff: delete static forward declarations in xprepare
  ` [PATCH v2 02/10] xdiff: delete local variables and initialize/free xdfile_t directly
  ` [PATCH v2 03/10] xdiff: delete unnecessary fields from xrecord_t and xdfile_t
  ` [PATCH v2 04/10] xdiff: delete xdl_get_rec() in xemit
  ` [PATCH v2 05/10] xdiff: delete struct diffdata_t
  ` [PATCH v2 06/10] xdiff: delete redundant array xdfile_t.ha
  ` [PATCH v2 07/10] xdiff: delete fields ha, line, size in xdlclass_t in favor of an xrecord_t
  ` [PATCH v2 08/10] xdiff: delete chastore from xdfile_t
  ` [PATCH v2 10/10] xdiff: treat xdfile_t.rchg like an enum
  ` [PATCH v3 00/10] Cleanup xdfile_t and xrecord_t in xdiff
    ` [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 03/10] xdiff: delete unnecessary fields from xrecord_t and xdfile_t
    ` [PATCH v3 04/10] xdiff: delete xdl_get_rec() in xemit
    ` [PATCH v3 05/10] xdiff: delete struct diffdata_t
    ` [PATCH v3 06/10] xdiff: delete redundant array xdfile_t.ha
    ` [PATCH v3 07/10] xdiff: delete fields ha, line, size in xdlclass_t in favor of an xrecord_t
    ` [PATCH v3 08/10] xdiff: delete chastore from xdfile_t
    ` [PATCH v3 09/10] xdiff: delete rchg aliasing
    ` [PATCH v3 10/10] xdiff: treat xdfile_t.rchg like an enum

[PATCH 0/3] extend --ignore-other-worktrees to 'rebase', add hints
 2025-09-19 14:13 UTC  (8+ messages)
` [PATCH 1/3] checkout: provide hint when failing due to another worktree

[PATCH 0/2] doc: git-push: clarify section
 2025-09-19  4:25 UTC  (7+ messages)
` [PATCH 1/2] doc: git-push: create PUSH RULES section
` [PATCH 2/2] doc: git-push: rewrite refspec specification

t5564 seems to be failing on Debian unstable
 2025-09-18 23:29 UTC  (3+ messages)

[RFC] git-rebase-clean: mitigating a “semantic conflict cascade” during rebase
 2025-09-18 22:22 UTC  (4+ messages)

[PATCH 0/4] doc: git-push: clarify DESCRIPTION section & refspec definition
 2025-09-18 21:02 UTC  (13+ messages)
` [PATCH v2 "
  ` [PATCH v2 1/4] doc: git-push: clarify intro
  ` [PATCH v2 2/4] doc: add an UPSTREAM BRANCHES section to pull/push/fetch

[PATCH] docs: update description for '--mirror' option for 'git push'
 2025-09-18 20:58 UTC  (5+ messages)
` [PATCH v2] "

[PATCH v5 0/8] you-still-use-that??: improve breaking changes troubleshooting
 2025-09-18 20:28 UTC  (14+ messages)
` [PATCH v6 0/9] "
  ` [PATCH v6 1/9] Makefile: don’t add whatchanged after it has been removed
  ` [PATCH v6 2/9] git: add `deprecated` category to --list-cmds
  ` [PATCH v6 3/9] git: move seen-alias bookkeeping into handle_alias(...)
  ` [PATCH v6 4/9] git: allow alias-shadowing deprecated builtins
  ` [PATCH v6 5/9] t0014: test shadowing of aliases for a sample of builtins
  ` [PATCH v6 6/9] you-still-use-that??: help the user help themselves
  ` [PATCH v6 7/9] whatchanged: hint about git-log(1) and aliasing
  ` [PATCH v6 8/9] whatchanged: remove not-even-shorter clause
  ` [PATCH v6 9/9] BreakingChanges: remove claim about whatchanged reports

[bug] git check-ignore returns the wrong exit code with -v when only a negative pattern matches
 2025-09-18 20:19 UTC  (3+ messages)

[PATCH 0/6] breaking changes: switch default initial branch name to "main"
 2025-09-18 18:42 UTC  (11+ messages)
` [PATCH v3 0/4] "
  ` [PATCH v2 5/4] initial branch: give hints after switching the default name

[PATCH] gitk: make the 'Tags and Heads' window geometry sticky
 2025-09-18 17:57 UTC  (2+ messages)

[ANNOUNCE] Contributor's Summit updates
 2025-09-18 17:47 UTC  (3+ messages)

[PATCH 0/5] refs/reftable: add fsck checks
 2025-09-18 15:36 UTC  (11+ messages)
` [PATCH v3 0/8] refs/reftable: add consistency checks
  ` [PATCH v3 1/8] refs: remove unused headers
  ` [PATCH v3 2/8] refs: move consistency check msg to generic layer
  ` [PATCH v3 3/8] reftable: check for trailing newline in 'tables.list'
  ` [PATCH v3 4/8] reftable: ensure tables in a stack use sequential update indices
  ` [PATCH v3 5/8] Documentation/fsck-msgids: remove duplicate msg id
  ` [PATCH v3 6/8] fsck: order 'fsck_msg_type' alphabetically
  ` [PATCH v3 7/8] reftable: add code to facilitate consistency checks
  ` [PATCH v3 8/8] refs/reftable: add fsck check for checking the table name

[PATCH 0/2] rebase -i: respect commit.cleanup when picking fixups
 2025-09-18 15:29 UTC  (4+ messages)
` [PATCH 1/2] "
` [PATCH 2/2] sequencer: remove VERBATIM_MSG flag

[Change] Git build issue on NonStop
 2025-09-18 15:20 UTC  (8+ messages)

[PATCH v2] combine-diff: don't override recursive flag in diff_tree_combined()
 2025-09-18 15:18 UTC  (6+ messages)
` [PATCH v3] last-modified: fix bug when some paths remain unhandled

[Bug] commit cleanup does not happen during autosquash rebase
 2025-09-18 15:12 UTC  (4+ messages)

[PATCH v3 0/2] rebase: support --trailer
 2025-09-18  8:36 UTC  (7+ messages)
` [PATCH v3 2/2] "

[PATCH v2 0/5] refs/reftable: add fsck checks
 2025-09-18  8:11 UTC  (4+ messages)
` [PATCH v2 5/5] refs/reftable: add fsck check for incorrect update index

[PATCH] Add `-u` short option for `git pull`
 2025-09-18  7:42 UTC  (5+ messages)

Fwd: Why does git-status suggest different commands to unstage files depending on whether there is a commit yet or not?
 2025-09-18  6:56 UTC  (2+ messages)

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

[PATCH] mailmap: consolidate multiple addresses into one
 2025-09-18  6:41 UTC  (5+ messages)

[PATCH v2 0/5] builtin/config: bug fixes for "get" subcommand with "--type=color"
 2025-09-18  6:03 UTC  (4+ messages)
` [PATCH v2 5/5] builtin/config: do not spawn pager when printing color codes

What's cooking in git.git (Sep 2025, #06; Mon, 15)
 2025-09-18  5:52 UTC  (6+ messages)

I still use it
 2025-09-18  5:37 UTC  (2+ messages)

[PATCH v5 00/15] packfile: carve out a new packfile store
 2025-09-17 22:32 UTC  (9+ messages)
` [PATCH v5 01/15] packfile: introduce a new `struct packfile_store`
` [PATCH v5 04/15] odb: move packfile map into "
` [PATCH v5 05/15] odb: move MRU list of packfiles "
` [PATCH v5 09/15] packfile: split up responsibilities of `reprepare_packed_git()`

[PATCH 0/2] refs/files: fix issues with git-fetch on case-insensitive FS
 2025-09-17 20:40 UTC  (12+ messages)
` [PATCH v3 0/4] "
` [PATCH v4 "

safe.directory does not work at all (git 2.39.5, 2.51.0)
 2025-09-17 20:22 UTC  (5+ messages)
  ` [SOLVED] "

[PATCH RFC 00/11] Introduce git-history(1) command for easy history editing
 2025-09-17 20:12 UTC  (4+ messages)

What's cooking in git.git (Sep 2025, #07; Wed, 17)
 2025-09-17 18:52 UTC 

[PATCH v3 0/6] doc: git-checkout: clarify DESCRIPTION section
 2025-09-17 18:38 UTC  (3+ messages)
` [PATCH v4 0/7] "

[PATCH 0/2] fast-import: start controlling how commit signatures are handled
 2025-09-17 18:27 UTC  (8+ messages)
` [PATCH 2/2] fast-import: add '--signed-commits=<mode>' option


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