git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2021-03-08 13:08:19 to 2021-03-09 20:48:56 UTC [more...]

[RFC][PATCH 0/2] rm: changes in the '.gitmodules' are staged after using '--cached'
 2021-03-09 20:47 UTC  (8+ messages)
` [PATCH v2 0/1] rm: stage submodule removal from '.gitmodules'
  ` [PATCH v2 1/1] rm: stage submodule removal from '.gitmodules' when using '--cached'

[PATCH 0/7] Move the read_tree() function to its only user
 2021-03-09 20:41 UTC  (58+ messages)
` [PATCH v2 0/6] "
  ` [PATCH 00/30] tree-walk: mostly "mode" to "enum object_type"
  ` [PATCH 01/30] diff.c: remove redundant canon_mode() call
  ` [PATCH 02/30] notes & match-trees: use name_entry's "pathlen" member
  ` [PATCH 03/30] cache.h: add a comment to object_type()
  ` [PATCH 04/30] tree-walk.h: add object_type member to name_entry
  ` [PATCH 05/30] tree-walk.c: migrate to using new "object_type" field when possible
  ` [PATCH 06/30] cache.h: have base_name_compare() take "is tree?", not "mode"
  ` [PATCH 07/30] tree-walk.h users: switch object_type(...) to new .object_type
  ` [PATCH 08/30] tree.h: format argument lists of read_tree_recursive() users
  ` [PATCH 09/30] tree.h users: format argument lists in archive.c
  ` [PATCH 10/30] archive: get rid of 'stage' parameter
  ` [PATCH 11/30] tree.h API: make read_tree_fn_t take an "enum object_type"
  ` [PATCH 12/30] tree-walk.h users: migrate "p->mode &&" pattern
  ` [PATCH 13/30] tree-walk.h users: refactor chained "mode" if/else into switch
  ` [PATCH 14/30] tree-walk.h users: migrate miscellaneous "mode" to "object_type"
  ` [PATCH 15/30] merge-tree tests: test for the mode comparison in same_entry()
  ` [PATCH 16/30] merge-ort: correct reference to test in 62fdec17a11
  ` [PATCH 17/30] fsck.c: switch on "object_type" in fsck_walk_tree()
  ` [PATCH 18/30] tree-walk.h users: use temporary variable(s) for "mode"
  ` [PATCH 19/30] tree-walk.h API: formatting changes for subsequent commit
  ` [PATCH 20/30] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode()
  ` [PATCH 21/30] tree-walk.h API users: use "tmp" for mode in shift_tree_by()
  ` [PATCH 22/30] tree-walk.h API: Add get_tree_entry_type()
  ` [PATCH 23/30] tree-walk.h API: add a get_tree_entry_path() function
  ` [PATCH 24/30] tree-walk.h API: document and format tree_entry_extract()
  ` [PATCH 25/30] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode()
  ` [PATCH 26/30] tree-walk.h API: add a tree_entry_extract_all() function
  ` [PATCH 27/30] tree-walk.h API: add a tree_entry_extract_type() function
  ` [PATCH 28/30] tree-walk.h API users: rename "struct name_entry"'s "mode" to "raw_mode"
  ` [PATCH 29/30] tree.h API users: rename read_tree_fn_t's "
  ` [PATCH 30/30] tree-walk.h API: move canon_mode() back out of decode_tree_entry()
` [PATCH v2 2/6] tree.c API: move read_tree() into builtin/ls-files.c
` [PATCH v2 3/6] ls-files: don't needlessly pass around stage variable
` [PATCH v2 4/6] ls-files: refactor away read_tree()

[PATCH 00/20] Sparse Index: Design, Format, Tests
 2021-03-09 20:20 UTC  (7+ messages)
` [PATCH 02/20] t/perf: add performance test for sparse operations
` [PATCH 17/20] sparse-checkout: disable sparse-index

[ANNOUNCE] Git v2.31.0-rc2
 2021-03-09 18:05 UTC  (2+ messages)

[PATCH] fetch-pack: do not mix --pack_header and packfile uri
 2021-03-09 19:13 UTC  (4+ messages)

[PATCH/RFC] test-lib: make --verbose work under prove
 2021-03-09 19:12 UTC  (12+ messages)
` [PATCH 0/6 + 1] test-lib: make --verbose output valid TAP
` [PATCH 1/7] test-lib: remove test_external
` [PATCH 2/7] test-lib: add say_color_tap helper to emit TAP format
` [PATCH 3/7] test-lib: color "ok" TAP directives green under --verbose (or -x)
` [PATCH 4/7] test-lib: add tee with TAP support to test-tool
` [PATCH 5/7] test-lib: indent and format GIT_TEST_TEE_OUTPUT_FILE code
` [PATCH 6/7] test-lib: make --verbose output valid TAP
` [RFC/PATCH 7/7] test-lib: generate JUnit output via TAP

[ANNOUNCE] Git for Windows 2.30.2
 2021-03-09 18:23 UTC 

[ANNOUNCE] Git v2.30.2 and below for CVE-2021-21300
 2021-03-09 18:03 UTC 

[PATCH v4 00/12] Simple IPC Mechanism
 2021-03-09 15:02 UTC  (14+ messages)
` [PATCH v5 "
  ` [PATCH v5 01/12] pkt-line: eliminate the need for static buffer in packet_write_gently()
  ` [PATCH v5 02/12] pkt-line: do not issue flush packets in write_packetized_*()
  ` [PATCH v5 03/12] pkt-line: add PACKET_READ_GENTLE_ON_READ_ERROR option
  ` [PATCH v5 04/12] pkt-line: add options argument to read_packetized_to_strbuf()
  ` [PATCH v5 05/12] simple-ipc: design documentation for new IPC mechanism
  ` [PATCH v5 06/12] simple-ipc: add win32 implementation
  ` [PATCH v5 07/12] unix-socket: eliminate static unix_stream_socket() helper function
  ` [PATCH v5 08/12] unix-socket: add backlog size option to unix_stream_listen()
  ` [PATCH v5 09/12] unix-socket: disallow chdir() when creating unix domain sockets
  ` [PATCH v5 10/12] unix-stream-server: create unix domain socket under lock
  ` [PATCH v5 11/12] simple-ipc: add Unix domain socket implementation
  ` [PATCH v5 12/12] t0052: add simple-ipc tests and t/helper/test-simple-ipc tool

Can git change?
 2021-03-09 14:54 UTC  (9+ messages)
        ` RES: "

windows git invalid path error
 2021-03-09 11:58 UTC 

Core translation should be documented on po/README
 2021-03-09 11:40 UTC 

[PATCH 1/2] Parse tags for absent objects
 2021-03-09 10:46 UTC  (19+ messages)
` [PATCH 0/7] improve reporting of unexpected objects
` [PATCH 1/7] object.c: refactor type_from_string_gently()
` [PATCH 2/7] object.c: make type_from_string() return "enum object_type"
` [PATCH 3/7] oid_object_info(): "
` [PATCH 4/7] tree.c: fix misindentation in parse_tree_gently()
` [PATCH 5/7] object.c: add a utility function for "expected type X, got Y"
` [PATCH 6/7] object tests: add test for unexpected objects in tags
` [PATCH 7/7] tag: don't misreport type of tagged objects in errors

[PATCH] [GSOC][RFC] format-patch: pass --right-only to range-diff
 2021-03-09 10:28 UTC  (7+ messages)
` [PATCH v2] [GSOC][RFC] format-patch: pass --left-only "
  ` [PATCH v3] "

bug: git difftool does not respect submodule argument
 2021-03-09  8:01 UTC 

[PATCH 00/11] Complete merge-ort implementation...almost
 2021-03-09  6:24 UTC  (30+ messages)
` [PATCH 04/11] merge-ort: have ll_merge() calls use the attr_index for renormalization
` [PATCH 07/11] t6428: new test for SKIP_WORKTREE handling and conflicts
` [PATCH 08/11] merge-ort: implement CE_SKIP_WORKTREE handling with conflicted entries
` [PATCH 09/11] t: mark several submodule merging tests as fixed under merge-ort
` [PATCH 10/11] merge-ort: write $GIT_DIR/AUTO_MERGE whenever we hit a conflict
` [PATCH 11/11] merge-recursive: add a bunch of FIXME comments documenting known bugs
` [PATCH v2 00/10] Complete merge-ort implementation...almost
  ` [PATCH v2 01/10] merge-ort: use STABLE_QSORT instead of QSORT where required
  ` [PATCH v2 02/10] merge-ort: add a special minimal index just for renormalization
  ` [PATCH v2 03/10] merge-ort: have ll_merge() use a special attr_index "
  ` [PATCH v2 04/10] merge-ort: let renormalization change modify/delete into clean delete
  ` [PATCH v2 05/10] merge-ort: support subtree shifting
  ` [PATCH v2 06/10] t6428: new test for SKIP_WORKTREE handling and conflicts
  ` [PATCH v2 07/10] merge-ort: implement CE_SKIP_WORKTREE handling with conflicted entries
  ` [PATCH v2 08/10] t: mark several submodule merging tests as fixed under merge-ort
  ` [PATCH v2 09/10] merge-ort: write $GIT_DIR/AUTO_MERGE whenever we hit a conflict
  ` [PATCH v2 10/10] merge-recursive: add a bunch of FIXME comments documenting known bugs

[PATCH v10 0/3] mergetool: add hideResolved configuration (was automerge)
 2021-03-09  5:42 UTC  (5+ messages)
` [PATCH v11 "
  ` [PATCH v11 1/3] mergetool: add hideResolved configuration
    ` [PATCH] mergetool: do not enable hideResolved by default

[PATCH] contrib/rebase-catchup: helper for updating old branches
 2021-03-09  1:03 UTC  (3+ messages)

[PATCH] describe: dont abort too early when searching tags
 2021-03-09  0:47 UTC  (3+ messages)
` [PATCH 00/10] describe tests: refactor & fix recent broken tests

Performance of "git gc..." is extremely bad in some cases
 2021-03-09  0:14 UTC  (5+ messages)

[PATCH 0/8] Optimization batch 9: avoid detecting irrelevant renames
 2021-03-09  0:09 UTC  (10+ messages)
` [PATCH v2 "
  ` [PATCH v2 1/8] diffcore-rename: enable filtering possible rename sources
  ` [PATCH v2 2/8] merge-ort: precompute subset of sources for which we need rename detection
  ` [PATCH v2 3/8] merge-ort: add data structures for an alternate tree traversal
  ` [PATCH v2 4/8] merge-ort: introduce wrappers for "
  ` [PATCH v2 5/8] merge-ort: precompute whether directory rename detection is needed
  ` [PATCH v2 6/8] merge-ort: use relevant_sources to filter possible rename sources
  ` [PATCH v2 7/8] merge-ort: skip rename detection entirely if possible
  ` [PATCH v2 8/8] diffcore-rename: avoid doing basename comparisons for irrelevant sources

What's cooking in git.git (Mar 2021, #02; Mon, 8)
 2021-03-08 23:54 UTC 

bug: conflicting core.bare setting causes segfault during bare clone
 2021-03-08 23:22 UTC  (4+ messages)
` [PATCH] builtin/init-db: handle bare clones when core.bare set to false

remote.<name>.merge missing from the git-config man page?
 2021-03-08 21:58 UTC  (12+ messages)

[PATCH v5 00/12] Rewrite the remaining merge strategies from shell to C
 2021-03-08 20:32 UTC  (9+ messages)
` [PATCH v6 00/13] "
  ` [PATCH v6 06/13] merge-index: don't fork if the requested program is `git-merge-one-file'

[PATCH 0/7] Fix all leaks in t0001
 2021-03-08 19:46 UTC  (17+ messages)
` [PATCH 1/7] symbolic-ref: don't leak shortened refname in check_symref()
` [PATCH 2/7] reset: free instead of leaking unneeded ref
` [PATCH 3/7] clone: free or UNLEAK further pointers when finished
` [PATCH 4/7] worktree: fix leak in dwim_branch()
` [PATCH 5/7] init: remove git_init_db_config() while fixing leaks
` [PATCH 6/7] init-db: silence template_dir leak when converting to absolute path
` [PATCH 7/7] parse-options: don't leak alias help messages

[PATCH] fix: added new BANNED_EXPL macro for better error messages, new parameter
 2021-03-08 18:41 UTC  (5+ messages)

[PATCH] Update 'make fuzz-all' docs to reflect modern clang
 2021-03-08 18:28 UTC  (6+ messages)
` [PATCH v2] "
  ` [PATCH v3] Makefile: update "

[PATCH] Makefile: generate 'git' as 'cc [...] -o git+ && mv git+ git'
 2021-03-08 18:26 UTC  (5+ messages)

[PATCH] [.mailmap] Add entry for Ramkumar Ramachandra
 2021-03-08 17:56 UTC  (3+ messages)
` [PATCH v2] "

[PATCH 00/10] merge-ort: add more handling of basic conflict types
 2021-03-08 14:49 UTC  (8+ messages)
` [PATCH v2 "
  ` [PATCH v2 05/10] merge-ort: flesh out implementation of handle_content_merge()
    ` A merge-ort TODO comment, and how to test merge-ort?

[PATCH 0/8] Simple IPC Cleanups
 2021-03-08 14:14 UTC  (4+ messages)
` [PATCH 5/8] unix-stream-server: add st_dev and st_mode to socket stolen checks


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