git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2022-01-12 18:07:49 to 2022-01-14 18:32:21 UTC [more...]

[PATCH v2 00/21] git-p4: Various code tidy-ups
 2022-01-14 18:32 UTC  (24+ messages)
` [PATCH v2 01/21] git-p4: add blank lines between functions and class definitions
` [PATCH v2 02/21] git-p4: remove unneeded semicolons from statements
` [PATCH v2 03/21] git-p4: indent with 4-spaces
` [PATCH v2 04/21] git-p4: improve consistency of docstring formatting
` [PATCH v2 05/21] git-p4: convert descriptive class and function comments into docstrings
` [PATCH v2 06/21] git-p4: remove commented code
` [PATCH v2 07/21] git-p4: sort and de-duplcate pylint disable list
` [PATCH v2 08/21] git-p4: remove padding from lists, tuples and function arguments
` [PATCH v2 09/21] git-p4: remove spaces around default arguments
` [PATCH v2 10/21] git-p4: removed brackets when assigning multiple return values
` [PATCH v2 11/21] git-p4: place a single space after every comma
` [PATCH v2 12/21] git-p4: remove extraneous spaces before function arguments
` [PATCH v2 13/21] git-p4: remove redundant backslash-continuations inside brackets
` [PATCH v2 14/21] git-p4: remove spaces between dictionary keys and colons
` [PATCH v2 15/21] git-p4: ensure every comment has a single #
` [PATCH v2 16/21] git-p4: ensure there is a single space around all operators
` [PATCH v2 17/21] git-p4: normalize indentation of lines in conditionals
` [PATCH v2 18/21] git-p4: compare to singletons with "is" and "is not"
` [PATCH v2 19/21] git-p4: only seperate code blocks by a single empty line
` [PATCH v2 20/21] git-p4: move inline comments to line above
` [PATCH v2 21/21] git-p4: seperate multiple statements onto seperate lines

What's cooking in git.git (Jan 2022, #03; Thu, 13)
 2022-01-14 18:12 UTC  (6+ messages)
` Mistakes in the stalled category? (Was: Re: What's cooking in git.git (Jan 2022, #03; Thu, 13))
` en/present-despite-skipped & en/remerge-diff "

[PATCH] README.md: add CodingGuidelines and a link for Translators
 2022-01-14 17:50 UTC 

[PATCH] leak tests: ignore some new leaks in a few tests
 2022-01-14 16:07 UTC 

[PATCH 0/5] Remove the present-despite-SKIP_WORKTREE class of bugs (for sparse-checkouts)
 2022-01-14 15:59 UTC  (13+ messages)
` [PATCH 1/5] t1011: add testcase demonstrating accidental loss of user modifications
` [PATCH 2/5] unpack-trees: fix accidental loss of user changes
` [PATCH 3/5] repo_read_index: clear SKIP_WORKTREE bit from files present in worktree
` [PATCH 4/5] Update documentation related to sparsity and the skip-worktree bit
` [PATCH 5/5] Accelerate clear_skip_worktree_from_present_files() by caching
` [PATCH v2 0/5] Remove the present-despite-SKIP_WORKTREE class of bugs (for sparse-checkouts)
  ` [PATCH v2 1/5] t1011: add testcase demonstrating accidental loss of user modifications
  ` [PATCH v2 2/5] unpack-trees: fix accidental loss of user changes
  ` [PATCH v2 3/5] repo_read_index: clear SKIP_WORKTREE bit from files present in worktree
  ` [PATCH v2 4/5] Update documentation related to sparsity and the skip-worktree bit
  ` [PATCH v2 5/5] Accelerate clear_skip_worktree_from_present_files() by caching

feature request: add [-f|--from <rootbranch>] to git stash branch
 2022-01-14 14:53 UTC  (2+ messages)

[PATCH 0/1] Fix bug in pull --rebase not recognizing rebase.autostash
 2022-01-14 14:09 UTC  (8+ messages)
` [PATCH 1/1] builtin/pull.c: use config value of autostash

[PATCH v2 0/3] refs: ab/refs-errno-cleanup fixup + remove "failure_errno"
 2022-01-14 12:21 UTC  (11+ messages)
` [PATCH v3 0/3] For v2.35.0: "
  ` [PATCH v3 1/3] refs API: use "failure_errno", not "errno"
  ` [PATCH v3 2/3] sequencer: don't use die_errno() on refs_resolve_ref_unsafe() failure

[PATCH] promisor-remote.c: use oidset for deduplication
 2022-01-14 12:11 UTC  (3+ messages)

[PATCH v6 0/6] object-name: make ambiguous object output translatable + show tag date
 2022-01-14 12:07 UTC  (8+ messages)
` [PATCH v7 "
  ` [PATCH v7 1/6] object-name tests: add tests for ambiguous object blind spots
  ` [PATCH v7 4/6] object-name: show date for ambiguous tag objects

[PATCH 00/10] Reftable coverity fixes
 2022-01-14 12:01 UTC  (10+ messages)
` [PATCH 10/10] reftable: make reftable_record a tagged union
        ` [PATCH] config.mak.dev: specify -std=gnu99 for gcc/clang
                ` v2.35.0 DEVELOPER=1 regression (was: [PATCH] config.mak.dev: specify -std=gnu99 for gcc/clang)

[PATCH v9 0/9] ls-tree.c: introduce "--format" option
 2022-01-14 12:00 UTC  (29+ messages)
` [PATCH v9 9/9] cocci: allow padding with `strbuf_addf()`
` [PATCH v10 0/9] ls-tree: "--object-only" and "--format" opts
  ` [PATCH v10 1/9] ls-tree: remove commented-out code
  ` [PATCH v10 2/9] ls-tree: add missing braces to "else" arms
  ` [PATCH v10 3/9] ls-tree: use "enum object_type", not {blob,tree,commit}_type
  ` [PATCH v10 4/9] ls-tree: use "size_t", not "int" for "struct strbuf"'s "len"
  ` [PATCH v10 5/9] ls-tree: optimize naming and handling of "return" in show_tree()
  ` [PATCH v10 6/9] ls-tree.c: support --object-only option for "git-ls-tree"
  ` [PATCH v10 7/9] ls-tree.c: introduce struct "show_tree_data"
  ` [PATCH v10 8/9] cocci: allow padding with `strbuf_addf()`
  ` [PATCH v10 9/9] ls-tree.c: introduce "--format" option

git bisect bad @
 2022-01-14  8:04 UTC  (16+ messages)

[RFC PATCH v1 0/1] ls-remote: inconsistency from the order of args and opts
 2022-01-14  6:42 UTC  (5+ messages)
` [RFC PATCH v1 1/1] ls-remote: Make the output independent of the order of opts and <remote>

[PATCH] test-lib: unset trace2 parent envvars
 2022-01-14  6:01 UTC  (2+ messages)

[PATCH] t/gpg: simplify test for unknown key
 2022-01-14  3:52 UTC  (5+ messages)
` [PATCH v2] "

[PATCH 0/7] reftable: avoid reading and writing empty keys
 2022-01-14  1:26 UTC  (9+ messages)
` [PATCH 1/7] Documentation: object_id_len goes up to 31
` [PATCH 2/7] reftable: reject 0 object_id_len
` [PATCH 3/7] reftable: add a test that verifies that writing empty keys fails
` [PATCH 4/7] reftable: avoid writing empty keys at the block layer
` [PATCH 5/7] reftable: ensure that obj_id_len is >= 2 on writing
` [PATCH 6/7] reftable: add test for length of disambiguating prefix
` [PATCH 7/7] reftable: rename writer_stats to reftable_writer_stats

[PATCH ab/fsck-unexpected-type] t1450-fsck: exec-bit is not needed to make loose object writable
 2022-01-13 23:04 UTC  (2+ messages)

[PATCH 0/3] Fix SunCC compiler complaints new in v2.35.0-rc0
 2022-01-13 21:38 UTC  (26+ messages)
` [PATCH 1/3] test-tool genzeros: initialize "zeros" to avoid SunCC warning
` [PATCH 2/3] reftable: remove unreachable "return" statements
` [PATCH 3/3] reftable tests: avoid "int" overflow, use "uint64_t"

Test failure on Windows in t3705-add-sparse-checkout.sh
 2022-01-13 21:12 UTC 

[PATCH] reftable: avoid initializing structs from structs
 2022-01-13 20:00 UTC  (5+ messages)

[PATCH v4 15/19] reftable: add merged table view
 2022-01-13 19:09 UTC  (5+ messages)
` [PATCH] reftable tests: use C syntax compatible with old xlc

[PATCH v2 0/2] sparse checkout: custom bash completion updates
 2022-01-13 19:02 UTC  (11+ messages)
` [PATCH v3 0/3] "
  ` [PATCH v3 3/3] sparse-checkout: limit tab completion to a single level

[PATCH v4 00/11] Reftable coverity fixes
 2022-01-13 18:52 UTC  (11+ messages)
` [PATCH v5 00/16] "
  ` [PATCH v5 02/16] reftable: fix resource leak in block.c error path

feature request: add [-n|--no-checkout] to git stash branch
 2022-01-13 18:28 UTC 

[PATCH 0/6] refs: excessive hook execution with packed refs
 2022-01-13 18:24 UTC  (17+ messages)
` [PATCH v2 "
  ` [PATCH v2 1/6] refs: open-code deletion of "
  ` [PATCH v3 0/6] refs: excessive hook execution with "
    ` [PATCH v3 1/6] refs: extract packed_refs_delete_refs() to allow control of transaction
    ` [PATCH v3 2/6] refs: allow passing flags when beginning transactions
    ` [PATCH v3 3/6] refs: allow skipping the reference-transaction hook
    ` [PATCH v3 4/6] refs: demonstrate excessive execution of "
    ` [PATCH v3 5/6] refs: do not execute reference-transaction hook on packing refs
    ` [PATCH v3 6/6] refs: skip hooks when deleting uncovered packed refs

[BUG] Re: Git 2.35.0-rc0
 2022-01-13 18:03 UTC  (9+ messages)

Git 2.34.1 on Fedora 1 and Ubuntu 4
 2022-01-13 13:28 UTC 

[PATCH] git-gui: added Turkish translation
 2022-01-13 13:07 UTC 

bug: git log --follow does not honour --author option
 2022-01-13 11:58 UTC 

[RFC PATCH 0/2] Introduce new merge-tree-ort command
 2022-01-13  9:26 UTC  (16+ messages)

[PATCH 0/9] Sparse index: integrate with 'clean', 'checkout-index', 'update-index'
 2022-01-13  3:02 UTC  (3+ messages)
` [PATCH v2 "

[PATCH v3 0/3] builtin/fetch: skip unnecessary tasks when using --negotiate-only
 2022-01-13  1:16 UTC  (6+ messages)
` [PATCH v4 0/3] fetch: "
  ` [PATCH v4 1/3] fetch: use goto cleanup in cmd_fetch()
  ` [PATCH v4 2/3] fetch: skip tasks related to fetching objects
  ` [PATCH v4 3/3] fetch --negotiate-only: do not update submodules

[PATCH v1] Modify NonStop configuration to disable uncompress2
 2022-01-12 23:52 UTC  (4+ messages)

[PATCH] packfile: avoid overflowing shift during decode
 2022-01-12 20:27 UTC  (6+ messages)

[PATCH 00/20] git-p4: Various code tidy-ups
 2022-01-12 19:54 UTC  (13+ messages)
` [PATCH 04/20] git-p4: improve consistency of docstring formatting
` [PATCH 05/20] git-p4: convert descriptive class and function comments into docstrings
` [PATCH 06/20] git-p4: remove commented code
` [PATCH 10/20] git-p4: place a single space after every comma
` [PATCH 16/20] git-p4: tidied visual indented lines of conditionals
` [PATCH 17/20] git-p4: compare to singletons with "is" and "is not"

[PATCH v7 0/8] protect branches checked out in all worktrees
 2022-01-12 19:10 UTC  (5+ messages)
` [PATCH v7 8/8] branch: "

[PATCH 0/2] builtin add -p: fix hunk splitting
 2022-01-12 18:51 UTC  (6+ messages)
` [PATCH v2 "

[PATCH v6 08/10] cat-file: correct and improve usage information
 2022-01-12 18:11 UTC  (4+ messages)
` [PATCH 0/2] fixups for issues in next-merged ab/cat-file

[PATCH] lazyload: use correct calling conventions
 2022-01-12 18:13 UTC  (4+ messages)


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