git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2021-03-16 16:19:47 to 2021-03-17 20:57:47 UTC [more...]

[PATCH v6 00/13] Rewrite the remaining merge strategies from shell to C
 2021-03-17 20:49 UTC  (16+ messages)
` [PATCH v7 00/15] "
  ` [PATCH v7 01/15] t6407: modernise tests
  ` [PATCH v7 02/15] t6060: modify multiple files to expose a possible issue with merge-index
  ` [PATCH v7 03/15] t6060: add tests for removed files
  ` [PATCH v7 04/15] merge-index: libify merge_one_path() and merge_all()
  ` [PATCH v7 05/15] merge-index: drop the index
  ` [PATCH v7 06/15] merge-index: add a new way to invoke `git-merge-one-file'
  ` [PATCH v7 07/15] update-index: move add_cacheinfo() to read-cache.c
  ` [PATCH v7 08/15] merge-one-file: rewrite in C
  ` [PATCH v7 09/15] merge-resolve: "
  ` [PATCH v7 10/15] merge-recursive: move better_branch_name() to merge.c
  ` [PATCH v7 11/15] merge-octopus: rewrite in C
  ` [PATCH v7 12/15] merge: use the "resolve" strategy without forking
  ` [PATCH v7 13/15] merge: use the "octopus" "
  ` [PATCH v7 14/15] sequencer: use the "resolve" "

[PATCH 00/27] Sparse Index: API protections
 2021-03-17 20:55 UTC  (34+ messages)
` [PATCH 01/27] *: remove 'const' qualifier for struct index_state
` [PATCH 02/27] read-cache: expand on query into sparse-directory entry
` [PATCH 03/27] sparse-index: API protection strategy
` [PATCH 04/27] cache: move ensure_full_index() to cache.h
` [PATCH 05/27] add: ensure full index
` [PATCH 06/27] checkout-index: "
` [PATCH 07/27] checkout: "
` [PATCH 08/27] commit: "
` [PATCH 09/27] difftool: "
` [PATCH 10/27] fsck: "
` [PATCH 11/27] grep: "
` [PATCH 12/27] ls-files: "
` [PATCH 13/27] merge-index: "
` [PATCH 14/27] rm: "
` [PATCH 15/27] sparse-checkout: "
` [PATCH 16/27] update-index: "
` [PATCH 17/27] diff-lib: "
` [PATCH 18/27] dir: "
` [PATCH 19/27] entry: "
` [PATCH 20/27] merge-ort: "
` [PATCH 21/27] merge-recursive: "
` [PATCH 22/27] pathspec: "
` [PATCH 23/27] read-cache: "
` [PATCH 24/27] resolve-undo: "
` [PATCH 25/27] revision: "
` [PATCH 26/27] sparse-index: expand_to_path()
` [PATCH 27/27] name-hash: use expand_to_path()

[PATCH v2 00/20] Sparse Index: Design, Format, Tests
 2021-03-17 20:43 UTC  (49+ messages)
` [PATCH v3 "
  ` [PATCH v3 01/20] sparse-index: design doc and format update
  ` [PATCH v3 02/20] t/perf: add performance test for sparse operations
  ` [PATCH v3 03/20] t1092: clean up script quoting
  ` [PATCH v3 04/20] sparse-index: add guard to ensure full index
  ` [PATCH v3 05/20] sparse-index: implement ensure_full_index()
  ` [PATCH v3 06/20] t1092: compare sparse-checkout to sparse-index
  ` [PATCH v3 07/20] test-read-cache: print cache entries with --table
    ` [RFC/PATCH 0/5] "
    ` [RFC/PATCH 1/5] ls-files: defer read_index() after parse_options() etc
    ` [RFC/PATCH 2/5] ls-files: make "mode" in show_ce() loop a variable
    ` [RFC/PATCH 3/5] ls-files: add and use a new --sparse option
    ` [RFC/PATCH 4/5] test-tool read-cache: --table is redundant to ls-files
    ` [RFC/PATCH 5/5] test-tool: split up test-tool read-cache
  ` [PATCH v3 08/20] test-tool: don't force full index
  ` [PATCH v3 09/20] unpack-trees: ensure "
  ` [PATCH v3 10/20] sparse-checkout: hold pattern list in index
  ` [PATCH v3 11/20] sparse-index: convert from full to sparse
  ` [PATCH v3 12/20] submodule: sparse-index should not collapse links
  ` [PATCH v3 13/20] unpack-trees: allow sparse directories
  ` [PATCH v3 14/20] sparse-index: check index conversion happens
  ` [PATCH v3 15/20] sparse-index: create extension for compatibility
  ` [PATCH v3 16/20] sparse-checkout: toggle sparse index from builtin
  ` [PATCH v3 17/20] sparse-checkout: disable sparse-index
  ` [PATCH v3 18/20] cache-tree: integrate with sparse directory entries
  ` [PATCH v3 19/20] sparse-index: loose integration with cache_tree_verify()
  ` [PATCH v3 20/20] p2000: add sparse-index repos

[PATCH v3 00/22] fsck: API improvements
 2021-03-17 20:30 UTC  (49+ messages)
` [PATCH v4 "
  ` [PATCH v5 00/19] "
  ` [PATCH v5 01/19] fsck.c: refactor and rename common config callback
  ` [PATCH v5 02/19] fsck.h: use designed initializers for FSCK_OPTIONS_{DEFAULT,STRICT}
  ` [PATCH v5 03/19] fsck.h: use "enum object_type" instead of "int"
  ` [PATCH v5 04/19] fsck.c: rename variables in fsck_set_msg_type() for less confusion
  ` [PATCH v5 05/19] fsck.c: move definition of msg_id into append_msg_id()
  ` [PATCH v5 06/19] fsck.c: rename remaining fsck_msg_id "id" to "msg_id"
  ` [PATCH v5 07/19] fsck.c: refactor fsck_msg_type() to limit scope of "int msg_type"
  ` [PATCH v5 08/19] fsck.h: move FSCK_{FATAL,INFO,ERROR,WARN,IGNORE} into an enum
  ` [PATCH v5 09/19] fsck.h: re-order and re-assign "enum fsck_msg_type"
  ` [PATCH v5 10/19] fsck.c: call parse_msg_type() early in fsck_set_msg_type()
  ` [PATCH v5 11/19] fsck.c: undefine temporary STR macro after use
  ` [PATCH v5 12/19] fsck.c: give "FOREACH_MSG_ID" a more specific name
  ` [PATCH v5 13/19] fsck.[ch]: move FOREACH_FSCK_MSG_ID & fsck_msg_id from *.c to *.h
  ` [PATCH v5 14/19] fsck.c: pass along the fsck_msg_id in the fsck_error callback
  ` [PATCH v5 15/19] fsck.c: add an fsck_set_msg_type() API that takes enums
  ` [PATCH v5 16/19] fsck.c: move gitmodules_{found,done} into fsck_options
  ` [PATCH v5 17/19] fetch-pack: don't needlessly copy fsck_options
  ` [PATCH v5 18/19] fetch-pack: use file-scope static struct for fsck_options
  ` [PATCH v5 19/19] fetch-pack: use new fsck API to printing dangling submodules
` [PATCH v4 01/22] fsck.h: update FSCK_OPTIONS_* for object_name
` [PATCH v4 02/22] fsck.h: use designed initializers for FSCK_OPTIONS_{DEFAULT,STRICT}
` [PATCH v4 04/22] fsck.h: add a FSCK_OPTIONS_COMMON_ERROR_FUNC macro
` [PATCH v4 08/22] fsck.c: move definition of msg_id into append_msg_id()
` [PATCH v4 11/22] fsck.h: move FSCK_{FATAL,INFO,ERROR,WARN,IGNORE} into an enum
` [PATCH v4 12/22] fsck.h: re-order and re-assign "enum fsck_msg_type"
` [PATCH v4 14/22] fsck.c: undefine temporary STR macro after use
` [PATCH v4 15/22] fsck.c: give "FOREACH_MSG_ID" a more specific name
` [PATCH v4 17/22] fsck.c: pass along the fsck_msg_id in the fsck_error callback
` [PATCH v4 18/22] fsck.c: add an fsck_set_msg_type() API that takes enums
` [PATCH v4 19/22] fsck.c: move gitmodules_{found,done} into fsck_options
` [PATCH v4 22/22] fetch-pack: use new fsck API to printing dangling submodules

[PATCH 0/2] Fix memory corruption with FSMonitor-enabled unpack_trees()
 2021-03-17 20:21 UTC  (5+ messages)
` [PATCH 1/2] fsmonitor: fix memory corruption in some corner cases
` [PATCH 2/2] fsmonitor: do not forget to release the token in `discard_index()`

Extra blank lines in "git status" output have been reduced
 2021-03-17 20:18 UTC  (3+ messages)

Distinguishing FF vs non-FF updates in the reflog?
 2021-03-17 20:06 UTC 

[PATCH] fetch: show progress for packfile uri downloads
 2021-03-17 19:31 UTC  (3+ messages)

[PATCH] format-patch: allow a non-integral version numbers
 2021-03-17 19:17 UTC  (4+ messages)

[PATCH v8 00/37] config-based hooks
 2021-03-17 19:16 UTC  (4+ messages)

git bisect fails to handle annotated tags
 2021-03-17 18:24 UTC  (5+ messages)
  ` [PATCH] bisect: peel annotated tags to commits

Tests failed with GIT_TEST_FAIL_PREREQS and/or GIT_TEST_PROTOCOL_VERSION
 2021-03-17 18:18 UTC  (7+ messages)
    ` [PATCH] t5606: run clone branch name test with protocol v2

[PATCH 0/7] Sort lists and add static-analysis
 2021-03-17 18:16 UTC  (18+ messages)
` [PATCH 1/7] Makefile: mark 'check-builtins' as a .PHONY target
` [PATCH 3/7] builtin.h: ASCII-sort list of functions
` [PATCH 4/7] test-tool.h: "
` [PATCH 5/7] Makefile: add 'check-sort' target

[PATCH] builtin/fetch.c: clean tmp pack after receive signal
 2021-03-17 18:15 UTC  (3+ messages)

[PATCH v2 0/6] Move the read_tree() function to its only user
 2021-03-17 17:38 UTC  (3+ messages)
` [PATCH v3 0/9] read_tree() and read_tree_recursive() refactoring

[PATCH v3] format-patch: allow a non-integral version numbers
 2021-03-17 17:27 UTC  (9+ messages)
` [PATCH v4] "
  ` [PATCH v5] "

[PATCH] fsmonitor: avoid global-buffer-overflow READ when checking trivial response
 2021-03-17 17:10 UTC  (3+ messages)

[PATCH] pack-bitmap: avoid traversal of objects referenced by uninteresting tag
 2021-03-17 15:11 UTC 

Regarding the depreciation of ssh+git/git+ssh protocols
 2021-03-17 14:53 UTC  (17+ messages)

[PATCH v7] [GSOC] commit: add --trailer option
 2021-03-17 13:54 UTC  (10+ messages)
` [PATCH v8 0/2] "
  ` [PATCH v8 1/2] "
  ` [PATCH v9] "

RFC: Additional git-for-each-repo synopsis
 2021-03-17  7:03 UTC 

GIT_SSH and mirror not working with git 2.30.1
 2021-03-16 20:33 UTC  (3+ messages)

[PATCH 0/2] Declare merge-ort ready for general usage
 2021-03-16 17:33 UTC  (4+ messages)

[PATCH v2 00/29] tree-walk: mostly replace "mode" with "enum object_type"
 2021-03-16 17:28 UTC  (3+ messages)
` [PATCH v3 00/32] "


Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).