git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2021-12-07 11:10:24 to 2021-12-08 14:58:33 UTC [more...]

[PATCH 00/11] rebase: reset_head() related fixes and improvements
 2021-12-08 14:58 UTC  (15+ messages)
` [PATCH v2 00/14] "
  ` [PATCH v2 01/14] rebase: factor out checkout for up to date branch
  ` [PATCH v2 02/14] t5403: refactor rebase post-checkout hook tests
  ` [PATCH v2 03/14] rebase: pass correct arguments to post-checkout hook
  ` [PATCH v2 04/14] rebase: do not remove untracked files on checkout
  ` [PATCH v2 05/14] rebase --apply: don't run post-checkout hook if there is an error
  ` [PATCH v2 06/14] reset_head(): remove action parameter
  ` [PATCH v2 07/14] create_autostash(): remove unneeded parameter
  ` [PATCH v2 08/14] reset_head(): factor out ref updates
  ` [PATCH v2 09/14] reset_head(): make default_reflog_action optional
  ` [PATCH v2 10/14] rebase: cleanup reset_head() calls
  ` [PATCH v2 11/14] reset_head(): take struct rebase_head_opts
  ` [PATCH v2 12/14] rebase --apply: fix reflog
  ` [PATCH v2 13/14] rebase --apply: set ORIG_HEAD correctly

[PATCH 00/10] Reftable coverity fixes
 2021-12-08 14:48 UTC  (19+ messages)
` [PATCH 01/10] reftable: fix OOB stack write in print functions
` [PATCH 02/10] reftable: fix resource leak in error path
` [PATCH 03/10] reftable: fix resource leak blocksource.c
` [PATCH 04/10] reftable: check reftable_stack_auto_compact() return value
` [PATCH 05/10] reftable: ignore remove() return value in stack_test.c
` [PATCH 06/10] reftable: fix resource warning
` [PATCH 07/10] reftable: fix NULL derefs in error paths
` [PATCH 08/10] reftable: order unittests by complexity
` [PATCH 09/10] reftable: drop stray printf in readwrite_test
` [PATCH 10/10] reftable: make reftable_record a tagged union

[PATCH 0/3] sparse-checkout: fix segfault on malformed patterns
 2021-12-08 14:23 UTC  (7+ messages)
` [PATCH 1/3] "
` [PATCH 2/3] sparse-checkout: fix OOM error with mixed patterns
` [PATCH 3/3] sparse-checkout: refuse to add to bad patterns

[PATCH v8 00/17] Upstreaming the Scalar command
 2021-12-08 14:17 UTC  (17+ messages)
` [PATCH v9 "
  ` [PATCH v10 00/15] "

[PATCH 0/6] sparse-checkout: make set subsume init
 2021-12-08 14:16 UTC  (28+ messages)
` [PATCH 3/6] sparse-checkout: enable `set` to initialize sparse-checkout mode
` [PATCH 4/6] git-sparse-checkout.txt: update to document that set handles init
` [PATCH v2 00/10] sparse-checkout: make set subsume init
  ` [PATCH v2 01/10] sparse-checkout: pass use_stdin as a parameter instead of as a global
  ` [PATCH v2 02/10] sparse-checkout: break apart functions for sparse_checkout_(set|add)
  ` [PATCH v2 03/10] sparse-checkout: add sanity-checks on initial sparsity state
  ` [PATCH v2 04/10] sparse-checkout: disallow --no-stdin as an argument to set
  ` [PATCH v2 05/10] sparse-checkout: split out code for tweaking settings config
  ` [PATCH v2 06/10] sparse-checkout: enable `set` to initialize sparse-checkout mode
  ` [PATCH v2 07/10] sparse-checkout: enable reapply to take --[no-]{cone,sparse-index}
  ` [PATCH v2 08/10] git-sparse-checkout.txt: update to document init/set/reapply changes
  ` [PATCH v2 09/10] Documentation: clarify/correct a few sparsity related statements
  ` [PATCH v2 10/10] clone: avoid using deprecated `sparse-checkout init`

[Question] Switching the URI from SSH to HTTPS for submodules
 2021-12-08 13:44 UTC  (5+ messages)

[RFC PATCH v1 1/1] docs: add the new commit-msg tags 'Reported:' and 'Reviewed:'
 2021-12-08 13:41 UTC  (10+ messages)

errno oversight
 2021-12-08 13:05 UTC  (4+ messages)

What's cooking in git.git (Dec 2021, #01; Fri, 3)
 2021-12-08 12:46 UTC  (12+ messages)
` en/keep-cwd (Was: Re: What's cooking in git.git (Dec 2021, #01; Fri, 3))
  ` en/keep-cwd
` cf/fetch-set-upstream-while-detached (was: What's cooking in git.git (Dec 2021, #01; Fri, 3))
  ` cf/fetch-set-upstream-while-detached
    ` [PATCH v5] pull, fetch: fix segfault in --set-upstream option

[PATCH v3 00/10] cat-file: better usage UX & error messages
 2021-12-08 12:34 UTC  (12+ messages)
` [PATCH v4 "
  ` [PATCH v4 01/10] cat-file tests: test bad usage
  ` [PATCH v4 02/10] cat-file tests: test messaging on bad objects/paths
  ` [PATCH v4 03/10] parse-options API: add a usage_msg_optf()
  ` [PATCH v4 04/10] cat-file docs: fix SYNOPSIS and "-h" output
  ` [PATCH v4 05/10] cat-file: move "usage" variable to cmd_cat_file()
  ` [PATCH v4 06/10] cat-file: make --batch-all-objects a CMDMODE
  ` [PATCH v4 07/10] cat-file: fix remaining usage bugs
  ` [PATCH v4 08/10] cat-file: correct and improve usage information
  ` [PATCH v4 09/10] object-name.c: don't have GET_OID_ONLY_TO_DIE imply *_QUIETLY
  ` [PATCH v4 10/10] cat-file: use GET_OID_ONLY_TO_DIE in --(textconv|filters)

[PATCH v3 00/15] diff --color-moved[-ws] speedups
 2021-12-08 12:30 UTC  (3+ messages)
` [PATCH v4 "

[PATCH] MyFirstContribution.txt: fix undeclared variable i in sample code
 2021-12-08 12:17 UTC  (12+ messages)
      ` Is 'for (int i = [...]' bad for C STD compliance reasons? (was: [PATCH] MyFirstContribution.txt: fix undeclared variable i in sample code)
        ` Is 'for (int i = [...]' bad for C STD compliance reasons?
          ` [PATCH] revision: use C99 declaration of variable in for() loop
                ` Removing -Wdeclaration-after-statement (was: [PATCH] revision: use C99 declaration of variable in for() loop)

[INFO] Does Git GUI support Dark Mode on Windows 10 ?
 2021-12-08 12:29 UTC 

[PATCH] name-rev: prefer shorter names over following merges
 2021-12-08 11:38 UTC  (3+ messages)
` [PATCH v2] "

[PATCH v16 0/3] am: support --empty=(die|drop|keep) option and --allow-empty option to handle empty patches
 2021-12-08 11:32 UTC  (14+ messages)
` [PATCH v17 "
  ` [PATCH v17 2/3] am: support --empty=<option> "
  ` [PATCH v17 3/3] am: support --allow-empty to record specific "
  ` [PATCH v18 0/3] am: support --empty=(die|drop|keep) option and --allow-empty option to handle "
    ` [PATCH v18 1/3] doc: git-format-patch: describe the option --always
    ` [PATCH v18 2/3] am: support --empty=<option> to handle empty patches
    ` [PATCH v18 3/3] am: support --allow-empty to record specific "

coverity problems in reftable code
 2021-12-08 10:50 UTC  (6+ messages)
  ` Fwd: "

[PATCH v4 00/11] Avoid removing the current working directory, even if it becomes empty
 2021-12-08 10:23 UTC  (8+ messages)
` [PATCH v5 "

[PATCH 0/2] A design for future-proofing fsync() configuration
 2021-12-08 10:05 UTC  (16+ messages)
` [PATCH v2 0/3] "
  ` [PATCH v2 1/3] core.fsyncmethod: add writeout-only mode
  ` [PATCH v2 2/3] core.fsync: introduce granular fsync control

[RFC] fetch: update refs in a single transaction
 2021-12-08  8:48 UTC  (3+ messages)

[RFC PATCH 0/1] making --set-upstream have default arguments
 2021-12-08  6:12 UTC  (5+ messages)
` [PATCH v2 "
  ` [PATCH v2 1/1] push: make '-u' "
      ` [PATCH v2 1/1] push: make '-u' have default argument

What's cooking in git.git (Dec 2021, #02; Tue, 7)
 2021-12-08  4:02 UTC  (2+ messages)

[PATCH v3] subtree: fix argument handling in check_parents
 2021-12-08  2:11 UTC  (2+ messages)
` [PATCH v4] "

[PATCH v4 0/1] ls-tree.c: support `--oid-only` option
 2021-12-08  2:08 UTC  (3+ messages)
` [PATCH v5 0/1] support `--object-only` option for "git-ls-tree"
  ` [PATCH v5 1/1] ls-tree.c: "

[RFC PATCH] branch: add "inherit" option for branch.autoSetupMerge
 2021-12-08  1:02 UTC  (12+ messages)
` [PATCH v5 0/2] branch: inherit tracking configs
  ` [PATCH v5 1/2] branch: accept multiple upstream branches for tracking
  ` [PATCH v5 2/2] branch: add flags and config to inherit tracking

[RFC PATCH 0/2] Conditional config includes based on remote URL
 2021-12-07 23:23 UTC  (4+ messages)
` [PATCH v6 "
  ` [PATCH v6 1/2] config: make git_config_include() static
  ` [PATCH v6 2/2] config: include file if remote URL matches a glob

[PATCH] git-compat-util(msvc): C11 does not imply support for zero-sized arrays
 2021-12-07 22:59 UTC  (5+ messages)

[PATCH] subtree: fix argument handling in check_parents
 2021-12-07 21:45 UTC  (3+ messages)

BUG: git bash / python interaction with absolute paths as environment variables in Windows
 2021-12-07 21:39 UTC  (4+ messages)

[PATCH 0/4] usage API: Add and use die_message()
 2021-12-07 21:24 UTC  (12+ messages)
` [PATCH 4/4] config API: don't use vreportf(), make it static in usage.c
` [PATCH v2 0/6] usage API: Add and use die_message()
  ` [PATCH v2 1/6] usage.c: add a die_message() routine
  ` [PATCH v2 2/6] usage.c API users: use die_message() for "fatal :" + exit 128
  ` [PATCH v2 3/6] usage.c API users: use die_message() for error() "
  ` [PATCH v2 4/6] gc: return from cmd_gc(), don't call exit()
  ` [PATCH v2 5/6] usage.c + gc: add and use a die_message_errno()
  ` [PATCH v2 6/6] config API: use get_error_routine(), not vreportf()

[PATCH v3 0/8] Allow writing invalid OIDs into refs for testing purposes
 2021-12-07 21:18 UTC  (11+ messages)
` [PATCH v4 "
  ` [PATCH v4 1/8] test-ref-store: remove force-create argument for create-reflog
  ` [PATCH v4 2/8] test-ref-store: parse symbolic flag constants
  ` [PATCH v4 3/8] test-ref-store: plug memory leak in cmd_delete_refs
  ` [PATCH v4 4/8] refs: update comment
  ` [PATCH v4 5/8] refs: introduce REF_SKIP_OID_VERIFICATION flag
  ` [PATCH v4 6/8] refs: introduce REF_SKIP_REFNAME_VERIFICATION flag
  ` [PATCH v4 7/8] t1430: remove refs using test-tool
  ` [PATCH v4 8/8] t1430: create valid symrefs using test-helper

[PATCH] builtin/fetch: skip unnecessary tasks when using --negotiate-only
 2021-12-07 19:29 UTC 

[PATCH v5 0/2] Conditional config includes based on remote URL
 2021-12-07 18:52 UTC  (4+ messages)

[PATCH] cbtree: remove broken and unused cb_unlink
 2021-12-07 18:38 UTC 

[PATCH 00/10] Factorization of messages with similar meaning
 2021-12-07 18:15 UTC  (9+ messages)
` [PATCH 01/10] i18n: refactor "foo and bar are mutually exclusive"
` [PATCH 04/10] i18n: standardize "cannot open" and "cannot read"
` [PATCH 05/10] i18n: tag.c factorize i18n strings
` [PATCH 08/10] i18n: refactor "unrecognized %(foo) argument" strings

[PATCH v5 2/2] config: include file if remote URL matches a glob
 2021-12-07 17:53 UTC  (2+ messages)

Build race observed with git 2.34.1 - hook-list.h wasn't generated yet
 2021-12-07 17:36 UTC  (3+ messages)

What's cooking in git.git (Dec 2021, #01; Fri, 3)
 2021-12-07 17:25 UTC  (4+ messages)

[PATCH v3 0/5] unpack large objects in stream
 2021-12-07 16:18 UTC  (3+ messages)
` [PATCH v4 "

[PATCH 00/17] cruft packs
 2021-12-07 15:38 UTC  (7+ messages)
` [PATCH 08/17] builtin/pack-objects.c: --cruft without expiration
` [PATCH 11/17] builtin/pack-objects.c: --cruft with expiration
` [PATCH 12/17] builtin/repack.c: support generating a cruft pack


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