git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-03-16 23:52:08 to 2025-03-19 03:53:31 UTC [more...]

[PATCH 0/9] remove unnecessary if statement
 2025-03-19  3:53 UTC  (12+ messages)
` [PATCH 1/9] config: teach repo_config to allow `repo` to be NULL
` [PATCH 2/9] builtin/verify-tag: stop using `the_repository`
` [PATCH 3/9] builtin/verify-commit: "
` [PATCH 4/9] builtin/send-pack: "
` [PATCH 5/9] builtin/pack-refs: "
` [PATCH 6/9] builtin/ls-files: "
` [PATCH 7/9] builtin/for-each-ref: "
` [PATCH 8/9] builtin/checkout-index: "
` [PATCH 9/9] builtin/update-server-info: remove unnecessary if statement

[GSoC PATCH v3 1/1] Unify SMTP auth error handling
 2025-03-19  2:02 UTC  (6+ messages)
` [GSoC PATCH v4 0/2] smtp_auth_maybe: unified error capture and status code processing optimization
  ` [GSoC PATCH v5 0/2] sendemail: improve error capture and status code handling
    ` [GSoC PATCH v5 1/2] sendemail: capture errors in an eval {} block
    ` [GSoC PATCH v5 2/2] sendemail: finer-grained SMTP error handling

[PATCH] format-patch: use raw format for notes
 2025-03-19  0:52 UTC  (5+ messages)

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

What's cooking in git.git (Mar 2025, #05; Tue, 18)
 2025-03-19  0:26 UTC  (2+ messages)

[PATCH] config.mak.dev: enable -Wunreachable-code
 2025-03-18 23:55 UTC  (19+ messages)
` [PATCH v2 0/3] -Wunreachable-code
  ` [PATCH v2 2/3] run-command: use errno to check for sigfillset() error
  ` [PATCH v2 3/3] git-compat-util: add NOT_A_CONST macro and use it in atfork_prepare()
  ` [PATCH v3 0/3] -Wunreachable-code
    ` [PATCH v3 1/3] run-command: use errno to check for sigfillset() error
    ` [PATCH v3 2/3] git-compat-util: add NOT_CONSTANT macro and use it in atfork_prepare()
    ` [PATCH v3 3/3] config.mak.dev: enable -Wunreachable-code

[PATCH] [GSoC Patch] Modernize Test Path Checking in Git’s Test Suite
 2025-03-18 23:53 UTC  (4+ messages)

[RFC PATCH v1 0/4] Fix `cargo package` for libgit-sys
 2025-03-18 23:24 UTC  (5+ messages)
` [RFC PATCH v1 1/4] libgitpub: move to separate contrib/ directory
` [RFC PATCH v1 2/4] libgit-sys: add symlink to git repo root and clean after build
` [RFC PATCH v1 3/4] libgit-sys: parallelize build with Cargo's jobserver
` [RFC PATCH v1 4/4] libgit-sys: exclude unnecessary directories in git-src

[PATCH 0/9] fetch: further ref-prefix cleanups and optimizations
 2025-03-18 23:02 UTC  (22+ messages)
` [PATCH 5/9] refspec_ref_prefixes(): clean up refspec_item logic
` [PATCH 6/9] fetch: ask server to advertise HEAD for config-less fetch
` [PATCH 8/9] fetch: avoid ls-refs only to ask for HEAD symref update
        ` [PATCH 0/2] limiting followRemoteHEAD being used
          ` [PATCH 1/2] fetch: only respect followRemoteHEAD with configured refspecs
          ` [PATCH 2/2] fetch: don't ask for remote HEAD if followRemoteHEAD is "never"

[PATCH] pseudo-merge.h: fix a typo
 2025-03-18 22:54 UTC 

[PATCH 5/9] refspec_ref_prefixes(): clean up refspec_item logic
 2025-03-18 22:50 UTC  (16+ messages)
` [PATCH 0/4] refspec: treat 'fetch' as a Boolean value
  ` [PATCH 1/4] "
  ` [PATCH 2/4] refspec: replace `refspec_init()` with fetch/push variants
  ` [PATCH 3/4] refspec: remove refspec_item_init_or_die()
  ` [PATCH 4/4] refspec: replace `refspec_item_init()` with fetch/push variants
` [PATCH v2 0/4] refspec: treat 'fetch' as a Boolean value
  ` [PATCH v2 1/4] "
  ` [PATCH v2 2/4] refspec: replace `refspec_init()` with fetch/push variants
  ` [PATCH v2 3/4] refspec: remove refspec_item_init_or_die()
  ` [PATCH v2 4/4] refspec: replace `refspec_item_init()` with fetch/push variants

[PATCH 0/3] http: support fine-tuning curl's keepalive behavior
 2025-03-18 22:21 UTC  (4+ messages)
` [PATCH 1/3] http.c: introduce `set_long_from_env()` for convenience
` [PATCH 2/3] http.c: inline `set_curl_keepalive()`
` [PATCH 3/3] http.c: allow custom TCP keepalive behavior via config

[GSoC PATCH] t9400: prefer test_path_* helper functions
 2025-03-18 22:06 UTC  (3+ messages)
` [GSoC PATCH v2] Use `test_path_*` helper functions instead of `test -[efd]`

[PATCH] [GSoC Patch] Modernize Test Path Checking: test -(e|f|d)
 2025-03-18 21:36 UTC  (4+ messages)

Slow git add . performance in large repo
 2025-03-18 21:06 UTC  (4+ messages)

What's cooking in git.git (Mar 2025, #04; Fri, 14)
 2025-03-18 20:40 UTC  (6+ messages)
    ` [PATCH] install meson for Documentation job

[PATCH 0/2] approxidate: tweak special date formats
 2025-03-18 18:02 UTC  (3+ messages)
` [PATCH 1/2] approxidate: make "specials" respect fixed day-of-month
` [PATCH 2/2] approxidate: overwrite tm_mday for `now` and `yesterday`

[PATCH v3 0/2] reflog: implement subcommand to drop reflogs
 2025-03-18 17:44 UTC  (5+ messages)
` [PATCH v3 2/2] "

[PATCH 0/3] completion: fix bugs with slashes in remote names
 2025-03-18 17:27 UTC  (8+ messages)
` [PATCH v3 0/2] "
  ` [PATCH v3 2/2] "

What's cooking in git.git (Mar 2025, #03; Wed, 12)
 2025-03-18 17:17 UTC  (4+ messages)

[PATCH] docs: clarify meaning of core.commentString=auto
 2025-03-18 17:15 UTC  (5+ messages)

[PATCH 0/5] repack: introduce '--combine-cruft-below-size'
 2025-03-18 16:30 UTC  (7+ messages)
` [PATCH 1/5] t/t5329-pack-objects-cruft.sh: evict 'repack'-related tests
` [PATCH 2/5] t/t7704-repack-cruft.sh: clarify wording in --max-cruft-size tests
` [PATCH 3/5] t/t7704-repack-cruft.sh: consolidate `write_blob()`
` [PATCH 4/5] repack: avoid combining cruft packs with `--max-cruft-size`
` [PATCH 5/5] repack: begin combining cruft packs with `--combine-cruft-below-size`

[PATCH v2 0/3] bundle-uri: copy all bundle references ino the refs/bundle space
 2025-03-18 15:36 UTC  (4+ messages)
` [PATCH v3 0/2] "
  ` [PATCH v3 1/2] "
  ` [PATCH v3 2/2] bundle-uri: add test for bundle-uri clones with tags

[PATCH] docs: add BreakingChanges to TECH_DOCS target
 2025-03-18 14:41 UTC 

[PATCH] pack-refs doc: fix indentation for --exclude
 2025-03-18 14:40 UTC 

[PATCH] index-pack, unpack-objects: restore missing ->init_fn
 2025-03-18 11:16 UTC 

[PATCH v4] promisor-remote: fix segfault when remote URL is missing
 2025-03-18 11:04 UTC  (13+ messages)
` [PATCH v5 0/3] "promisor-remote" capability fixes
  ` [PATCH v5 1/3] promisor-remote: fix segfault when remote URL is missing
  ` [PATCH v5 3/3] promisor-remote: compare remote names case sensitively
  ` [PATCH v6 0/4] "promisor-remote" capability fixes
    ` [PATCH v6 1/4] t5710: arrange to delete the client before cloning
    ` [PATCH v6 2/4] promisor-remote: fix segfault when remote URL is missing
    ` [PATCH v6 3/4] promisor-remote: fix possible issue when no URL is advertised
    ` [PATCH v6 4/4] promisor-remote: compare remote names case sensitively

[PATCH 0/3] meson: improve handling of `-Dbreaking_changes=true`
 2025-03-18 10:06 UTC  (6+ messages)
` [PATCH 3/3] meson: don't install git-pack-redundant(1) docs with breaking changes

[GSoC][Patch] Modernize Test Path Checking in Git’s Test Suite
 2025-03-18  9:25 UTC 

[GSoC][Patch] Modernize Test Path Checking in Git’s Test Suite
 2025-03-18  8:12 UTC 

[PATCH 0/2] doc: apply new format to git-branch man page
 2025-03-18  4:27 UTC  (8+ messages)
` [PATCH 1/2] completion: take into account the formatting backticks for options
` [PATCH 2/2] doc: apply new format to git-branch man page

[PATCH 0/3] Add a static analysis job to prevent assertions with side effects
 2025-03-17 22:37 UTC  (20+ messages)
` [PATCH 2/3] ci: add build checking for side-effects in assert() calls
` [PATCH v2 0/3] Add a static analysis job to prevent assertions with side effects
  ` [PATCH v2 1/3] git-compat-util: introduce BUG_IF_NOT() macro
  ` [PATCH v2 2/3] ci: add build checking for side-effects in assert() calls
  ` [PATCH v2 3/3] treewide: replace assert() with BUG_IF_NOT() in special cases

Git Bug Report: git add --patch > "e" makes keyboard unresponsive
 2025-03-17 22:24 UTC  (3+ messages)

[PATCH] contrib/vscode: respect configurable options of IntelliSense
 2025-03-17 22:17 UTC  (3+ messages)

[PATCH] doc: restore: remove note on --patch w/ pathspecs
 2025-03-17 22:11 UTC  (4+ messages)
` [PATCH v2] "

[GSOC][PATCH 1/3] Remove outdated mentoring mailing list reference and clarify tutorial prerequisites
 2025-03-17 21:57 UTC  (2+ messages)

[PATCH 0/3] Small new merge-ort features, prepping for deletion of merge-recursive.[ch]
 2025-03-17 21:25 UTC  (3+ messages)
` [PATCH v2 0/6] "

[PATCH 06/12] config.mak.uname: only set NO_REGEX on cygwin for v1.7
 2025-03-17 20:43 UTC  (5+ messages)

[ANNOUNCE] Git v2.49.0
 2025-03-17 18:49 UTC  (3+ messages)
` Problems publishing Rust crates (was: [ANNOUNCE] Git v2.49.0)

git switch --force vs --discard-changes: docs don't match behavior
 2025-03-17 18:13 UTC  (4+ messages)

[PATCH] diffcore-rename: fix BUG when break detection and --follow used together
 2025-03-17 17:52 UTC  (6+ messages)
` [PATCH v2] "

path-restricted log vs. subtree merges
 2025-03-17 17:43 UTC  (2+ messages)

[GSoC PATCH] rm: fix sign comparison warnings
 2025-03-17 17:12 UTC  (7+ messages)
` [GSoC PATCH v2] "
  ` [GSoC PATCH v3] "

[ANNOUNCE] Git for Windows 2.49.0
 2025-03-17 17:03 UTC  (2+ messages)

Iffy output given git diff --unified=2147483647
 2025-03-17 16:50 UTC  (6+ messages)
  ` [PATCH] xdiff: avoid arithmetic overflow in xdl_get_hunk()

[PATCH 0/2] compat/mingw: fix EACCESS when opening files with `O_CREAT | O_EXCL`
 2025-03-17 15:16 UTC  (4+ messages)
` [PATCH 2/2] "

[PATCH] meson: fix perl detection when docs are enabled, but perl bindings aren't
 2025-03-17 14:01 UTC  (2+ messages)

[PATCH 12/12] config.mak.uname: add a note about CSPRNG_METHOD for Linux
 2025-03-16 23:52 UTC  (4+ messages)


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