git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2021-03-16 15:59:52 to 2021-03-17 18:48:55 UTC [more...]

[PATCH v3 00/22] fsck: API improvements
 2021-03-17 18:48 UTC  (53+ 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 03/22] fsck.h: reduce duplication between FSCK_OPTIONS_{DEFAULT,STRICT}
` [PATCH v4 04/22] fsck.h: add a FSCK_OPTIONS_COMMON_ERROR_FUNC macro
` [PATCH v4 05/22] fsck.h: indent arguments to of fsck_set_msg_type
` [PATCH v4 06/22] fsck.h: use "enum object_type" instead of "int"
` [PATCH v4 07/22] fsck.c: rename variables in fsck_set_msg_type() for less confusion
` [PATCH v4 08/22] fsck.c: move definition of msg_id into append_msg_id()
` [PATCH v4 09/22] fsck.c: rename remaining fsck_msg_id "id" to "msg_id"
` [PATCH v4 10/22] fsck.c: refactor fsck_msg_type() to limit scope of "int msg_type"
` [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 13/22] fsck.c: call parse_msg_type() early in fsck_set_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 16/22] fsck.[ch]: move FOREACH_FSCK_MSG_ID & fsck_msg_id from *.c to *.h
` [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 20/22] fetch-pack: don't needlessly copy fsck_options
` [PATCH v4 21/22] fetch-pack: use file-scope static struct for fsck_options
` [PATCH v4 22/22] fetch-pack: use new fsck API to printing dangling submodules

[PATCH v2 00/20] Sparse Index: Design, Format, Tests
 2021-03-17 18:44 UTC  (44+ 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 v8 00/37] config-based hooks
 2021-03-17 18:41 UTC  (3+ 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 00/27] Sparse Index: API protections
 2021-03-17 18:03 UTC  (31+ 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 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 

[PATCH 0/2] Fix memory corruption with FSMonitor-enabled unpack_trees()
 2021-03-17 15:30 UTC  (3+ 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()`

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] "

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

Extra blank lines in "git status" output have been reduced
 2021-03-17 10:22 UTC 

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  (24+ messages)
` [PATCH v3 00/32] "
` [PATCH v3 07/32] mktree tests: test that "mode" is passed when sorting
` [PATCH v3 12/32] tree.h users: format argument lists in archive.c
` [PATCH v3 14/32] tree.h API: make read_tree_fn_t take an "enum object_type"
` [PATCH v3 15/32] tree-walk.h users: migrate "p->mode &&" pattern
` [PATCH v3 16/32] tree-walk.h users: refactor chained "mode" if/else into switch
` [PATCH v3 17/32] tree-walk.h users: migrate miscellaneous "mode" to "object_type"
` [PATCH v3 18/32] merge-tree tests: test for the mode comparison in same_entry()
` [PATCH v3 19/32] merge-ort: correct reference to test in 62fdec17a11
` [PATCH v3 20/32] fsck.c: switch on "object_type" in fsck_walk_tree()
` [PATCH v3 21/32] tree-walk.h users: use temporary variable(s) for "mode"
` [PATCH v3 22/32] tree-walk.h API: formatting changes for subsequent commit
` [PATCH v3 23/32] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode()
` [PATCH v3 24/32] match-trees: use "tmp" for mode in shift_tree_by()
` [PATCH v3 25/32] tree-walk.h API: add get_tree_entry_type()
` [PATCH v3 26/32] tree-walk.h API: document and format tree_entry_extract()
` [PATCH v3 27/32] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode()
` [PATCH v3 28/32] tree-walk.h API: add a tree_entry_extract_all() function
` [PATCH v3 29/32] tree-walk.h API: add get_tree_entry_all()
` [PATCH v3 30/32] tree-walk.h API: add a get_tree_entry_path() function
` [PATCH v3 31/32] blame: emit a better error on 'git blame directory'
` [PATCH v3 32/32] tree-walk.h API: add a tree_entry_extract_type() function


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