git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
 messages from 2022-07-30 07:51:16 to 2022-08-02 19:46:37 UTC [more...]

[PATCH 0/7] Generalize 'scalar diagnose' into 'git bugreport --diagnose'
 2022-08-02 19:46 UTC  (22+ messages)
` [PATCH 1/7] scalar: use "$GIT_UNZIP" in 'scalar diagnose' test
` [PATCH 2/7] builtin/bugreport.c: create '--diagnose' option
` [PATCH 3/7] builtin/bugreport.c: avoid size_t overflow
` [PATCH 4/7] builtin/bugreport.c: add directory to archiver more gently
` [PATCH 5/7] builtin/bugreport.c: add '--no-report' option
` [PATCH 6/7] scalar: use 'git bugreport --diagnose' in 'scalar diagnose'
` [PATCH 7/7] scalar: update technical doc roadmap

[PATCH v4 0/6] [GSoC] bitmap: integrate a lookup table extension to the bitmap format
 2022-08-02 17:44 UTC  (7+ messages)
` [PATCH v5 "
  ` [PATCH v5 3/6] pack-bitmap-write: learn pack.writeBitmapLookupTable and add tests

[PATCH 00/20] parse-options: handle subcommands
 2022-08-02 17:37 UTC  (4+ messages)
` [PATCH 01/20] git.c: update NO_PARSEOPT markings

[RFC/PATCH] pipe_command(): mark stdin descriptor as non-blocking
 2022-08-02 16:16 UTC  (4+ messages)

Git v2.20.1 EOS date
 2022-08-02 16:12 UTC  (3+ messages)

[PATCH v4 00/17] submodule--helper: (only) fix memory leaks
 2022-08-02 15:54 UTC  (19+ messages)
` [PATCH v5 00/17] submodule--helper: "
  ` [PATCH v5 01/17] submodule--helper: fix a leak in "clone_submodule"
  ` [PATCH v5 02/17] submodule--helper: fix trivial get_default_remote_submodule() leak
  ` [PATCH v5 03/17] submodule--helper: fix most "struct pathspec" memory leaks
  ` [PATCH v5 04/17] submodule--helper: "struct pathspec" memory leak in module_update()
  ` [PATCH v5 05/17] submodule--helper: don't leak {run,capture}_command() cp.dir argument
  ` [PATCH v5 06/17] submodule--helper: add and use *_release() functions
  ` [PATCH v5 07/17] submodule--helper: fix "errmsg_str" memory leak
  ` [PATCH v5 08/17] submodule--helper: fix "sm_path" and other "module_cb_list" leaks
  ` [PATCH v5 09/17] submodule--helper: fix a leak with repo_clear()
  ` [PATCH v5 10/17] submodule--helper: fix a memory leak in get_default_remote_submodule()
  ` [PATCH v5 11/17] submodule--helper: fix "reference" leak
  ` [PATCH v5 12/17] submodule--helper: fix obscure leak in module_add()
  ` [PATCH v5 13/17] submodule--helper: fix a "
  ` [PATCH v5 14/17] submodule--helper: fix a memory leak in print_status()
  ` [PATCH v5 15/17] submodule--helper: free some "displaypath" in "struct update_data"
  ` [PATCH v5 16/17] submodule--helper: free rest of "
  ` [PATCH v5 17/17] submodule--helper: fix a configure_added_submodule() leak

[PATCH 00/20] submodule--helper: add tests, rm dead code, refactor & leak prep
 2022-08-02 15:46 UTC  (33+ messages)
` [PATCH 14/20] submodule--helper: pass a "const struct module_clone_data" to clone_submodule()
` [PATCH v2 00/28] submodule--helper: add tests, rm dead code, refactor & leak prep
  ` [PATCH v2 01/28] submodule tests: test usage behavior
  ` [PATCH v2 02/28] submodule tests: test for "add <repository> <abs-path>"
  ` [PATCH v2 03/28] submodule--helper: remove unused "name" helper
  ` [PATCH v2 04/28] submodule--helper: remove unused "list" helper
  ` [PATCH v2 05/28] test-tool submodule-config: remove unused "--url" handling
  ` [PATCH v2 06/28] submodule--helper: move "is-active" to a test-tool
  ` [PATCH v2 07/28] submodule--helper: move "check-name" "
  ` [PATCH v2 08/28] submodule--helper: move "resolve-relative-url-test" "
  ` [PATCH v2 09/28] submodule--helper style: don't separate declared variables with \n\n
  ` [PATCH v2 10/28] submodule--helper style: add \n\n after variable declarations
  ` [PATCH v2 11/28] submodule--helper: replace memset() with { 0 }-initialization
  ` [PATCH v2 12/28] submodule--helper: use xstrfmt() in clone_submodule()
  ` [PATCH v2 13/28] submodule--helper: move "sb" in clone_submodule() to its own scope
  ` [PATCH v2 14/28] submodule--helper: pass a "const struct module_clone_data" to clone_submodule()
  ` [PATCH v2 15/28] submodule--helper: add "const" to copy of "update_data"
  ` [PATCH v2 16/28] submodule--helper: refactor "errmsg_str" to be a "struct strbuf"
  ` [PATCH v2 17/28] submodule--helper: don't redundantly check "else if (res)"
  ` [PATCH v2 18/28] submodule--helper: rename "int res" to "int ret"
  ` [PATCH v2 19/28] submodule--helper: return "ret", not "1" from update_submodule()
  ` [PATCH v2 20/28] submodule--helper: add missing braces to "else" arm
  ` [PATCH v2 21/28] submodule--helper: don't call submodule_strategy_to_string() in BUG()
  ` [PATCH v2 22/28] submodule--helper: move submodule_strategy_to_string() to only user
  ` [PATCH v2 23/28] submodule--helper: use "code" in run_update_command()
  ` [PATCH v2 24/28] submodule--helper: don't exit() on failure, return
  ` [PATCH v2 25/28] submodule--helper: libify determine_submodule_update_strategy()
  ` [PATCH v2 26/28] submodule--helper: libify "must_die_on_failure" code paths
  ` [PATCH v2 27/28] submodule--helper: libify "must_die_on_failure" code paths (for die)
  ` [PATCH v2 28/28] submodule--helper: fix bad config API usage

[RFC PATCH 1/2] notes: support fetching notes from an external repo
 2022-08-02 15:40 UTC  (3+ messages)
` [RFC PATCH 2/2] notes: create interface to iterate over notes for a given oid

[PATCH v2 0/6] revisions API: fix more memory leaks
 2022-08-02 15:33 UTC  (8+ messages)
` [PATCH v3 "
  ` [PATCH v3 1/6] bisect.c: add missing "goto" for release_revisions()
  ` [PATCH v3 2/6] test-fast-rebase helper: use release_revisions() (again)
  ` [PATCH v3 3/6] log: fix a memory leak in "git show <revision>..."
  ` [PATCH v3 4/6] log: refactor "rev.pending" code in cmd_show()
  ` [PATCH v3 5/6] bisect.c: partially fix bisect_rev_setup() memory leak
  ` [PATCH v3 6/6] revisions API: don't leak memory on argv elements that need free()-ing

[PATCH] rebase: introduce allow-inline-reword option
 2022-08-02 15:23 UTC  (2+ messages)

'git clone,' build makes user non-writable files (should be option keep user-writable)
 2022-08-02 14:34 UTC  (5+ messages)

[GSoC] Abhradeep's GSoC blogs (2 Aug, 2022 IST)
 2022-08-02 14:07 UTC 

fsmonitor: perpetual trivial response
 2022-08-02 13:51 UTC  (4+ messages)

[PATCH v5 0/9] docs: create & use "(user|developer) interfaces" categories
 2022-08-02 12:56 UTC  (17+ messages)
` [PATCH v6 "
  ` [PATCH v6 1/9] help.c: BUG() out if "help --guides" can't remove "git" prefixes
  ` [PATCH v7 00/10] docs: create & use "(user|developer) interfaces" categories
    ` [PATCH v7 01/10] help.c: refactor drop_prefix() to use a "switch" statement"
    ` [PATCH v7 02/10] help.c: remove common category behavior from drop_prefix() behavior
    ` [PATCH v7 03/10] git help doc: use "<doc>" instead of "<guide>"
    ` [PATCH v7 04/10] git docs: add a category for user-facing file, repo and command UX
    ` [PATCH v7 05/10] git docs: add a category for file formats, protocols and interfaces
    ` [PATCH v7 06/10] docs: move commit-graph format docs to man section 5
    ` [PATCH v7 07/10] docs: move protocol-related "
    ` [PATCH v7 08/10] docs: move pack format "
    ` [PATCH v7 09/10] docs: move http-protocol "
    ` [PATCH v7 10/10] docs: move multi-pack-index "

[PATCH 0/9] Fix issues of reference-transaction hook for various git commands
 2022-08-02 12:42 UTC  (10+ messages)
` [PATCH 1/9] t1416: more testcases for reference-transaction hook
` [PATCH 5/9] refs: avoid duplicate running of the "
` [PATCH 6/9] refs: add reflog_info to hold more fields for reflog entry
` [PATCH 9/9] refs: reimplement refs_delete_refs() and run hook once

[PATCH 0/5] Bundle URIs II: git clone --bundle-uri
 2022-08-02 12:29 UTC  (19+ messages)
` [PATCH 1/5] remote-curl: add 'get' capability
` [PATCH 2/5] bundle-uri: create basic file-copy logic
` [PATCH 4/5] bundle-uri: add support for http(s):// and file://
` [PATCH v2 0/5] Bundle URIs II: git clone --bundle-uri
  ` [PATCH v2 1/5] remote-curl: add 'get' capability
  ` [PATCH v2 2/5] bundle-uri: create basic file-copy logic
  ` [PATCH v2 3/5] clone: add --bundle-uri option
  ` [PATCH v2 4/5] bundle-uri: add support for http(s):// and file://
  ` [PATCH v2 5/5] clone: --bundle-uri cannot be combined with --depth

"git symbolic-ref" doesn't do a very good job
 2022-08-02  0:57 UTC  (17+ messages)

[PATCH v6] submodule merge: update conflict error message
 2022-08-02  0:50 UTC  (6+ messages)
` [PATCH v7] "

[PATCH 0/2] t0021: convert perl script to C test-tool helper
 2022-08-02  0:16 UTC  (14+ messages)
` [PATCH v2] t/t0021: convert the rot13-filter.pl script to C
  ` [PATCH v3 0/3] t0021: convert perl script to C test-tool helper
    ` [PATCH v3 1/3] t0021: avoid grepping for a Perl-specific string at filter output
    ` [PATCH v3 2/3] t0021: implementation the rot13-filter.pl script in C
    ` [PATCH v3 3/3] tests: use the new C rot13-filter helper to avoid PERL prereq

--creation-factor=100 does not show code
 2022-08-01 23:17 UTC  (12+ messages)
  ` Re* "
    ` [PATCH] format-patch: clarify --creation-factor=<factor>

What's cooking in git.git (Aug 2022, #01; Mon, 1)
 2022-08-01 22:59 UTC 

[PATCH] Documentation/git-reflog: remove unneeded \ from \{
 2022-08-01 21:33 UTC  (2+ messages)

Seeking Review Club nominations
 2022-08-01 21:27 UTC 

[PATCH v3 0/3] object-info: add option for retrieving object info
 2022-08-01 18:58 UTC  (16+ messages)
` [PATCH v4 0/8] cat-file: add --batch-command remote-object-info command
  ` [PATCH v4 8/8] "
  ` [PATCH v5 0/6] "
  ` [PATCH v5 4/6] serve: advertise object-info feature
  ` [PATCH v5 5/6] transport: add client support for object-info

Option to allow fsmonitor to run against repos on network file systems
 2022-08-01 18:35 UTC  (5+ messages)

What's cooking in git.git (Jul 2022, #08; Fri, 29)
 2022-08-01 16:56 UTC  (5+ messages)
` ab/leak-check (was: What's cooking in git.git (Jul 2022, #08; Fri, 29))
  ` ab/leak-check

Reveal by history that several commits are independent from each other?
 2022-08-01 16:34 UTC  (2+ messages)

[PATCH v3 1/2] docs: document bundle URI standard
 2022-08-01 13:42 UTC  (3+ messages)

[PATCH v1 1/2] api-trace2.txt: print config key-value pair
 2022-08-01 12:25 UTC  (2+ messages)

Question: What's the best way to implement directory permission control in git?
 2022-08-01 10:14 UTC  (4+ messages)

[ANNOUNCE] Git Rev News edition 89
 2022-07-31 20:43 UTC 

[PATCH] merge-ort: clean up after failed merge
 2022-07-31 18:44 UTC  (4+ messages)
` [PATCH v2 0/2] "

[PATCH 0/2] cat-file: support NUL-delimited input with `-z`
 2022-07-31 15:50 UTC  (3+ messages)
` [PATCH 2/2] builtin/cat-file.c: "

Lost file after git merge
 2022-07-31  1:45 UTC  (7+ messages)

[PATCH v2 0/3] Remove use of "whitelist"
 2022-07-31  0:35 UTC  (4+ messages)
` [PATCH v3 0/5] "
  ` [PATCH v3 3/5] git.txt: remove redundant language

[PATCH] merge-file: fix build warning with gcc 4.8.5
 2022-07-30 23:50 UTC  (6+ messages)

[PATCH 0/3] doc: unify config info on some cmds
 2022-07-30 20:44 UTC  (20+ messages)
` [PATCH v2 0/9] docs: de-duplicate sections, add more CONFIGURATION sections
  ` [PATCH v2 1/9] docs: add and use include template for config/* includes
  ` [PATCH v2 2/9] grep docs: de-duplicate configuration sections
  ` [PATCH v2 3/9] send-email "
  ` [PATCH v2 4/9] apply "
  ` [PATCH v2 5/9] notes "
  ` [PATCH v2 6/9] difftool "
  ` [PATCH v2 7/9] log "
  ` [PATCH v2 9/9] docs: add CONFIGURATION sections that fuzzy map to built-ins

[PATCH v5 0/4] Add support for mailmap in cat-file
 2022-07-30  7:50 UTC  (6+ messages)
` [PATCH v6 "


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