Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-12-09 04:41:51 +0300
committerJunio C Hamano <gitster@pobox.com>2023-12-09 04:41:51 +0300
commit4dec8a351ade6aefad370ec747f669743b02411c (patch)
treeda93cd0a835489fe37de487b919a39aa05560c0b
parent16da7cb02faaf8b4166b55f9fba3b7c4f7f5fbd1 (diff)
What's cooking (2023/12 #01)
-rw-r--r--whats-cooking.txt296
1 files changed, 243 insertions, 53 deletions
diff --git a/whats-cooking.txt b/whats-cooking.txt
index 67e6839c26..1129c610f4 100644
--- a/whats-cooking.txt
+++ b/whats-cooking.txt
@@ -1,10 +1,10 @@
To: git@vger.kernel.org
-Subject: What's cooking in git.git (Nov 2023, #09; Mon, 27)
+Subject: What's cooking in git.git (Dec 2023, #01; Sat, 9)
X-master-at: 564d0252ca632e0264ed670534a51d18a689ef5d
X-next-at: 3155946c3afb0941e6e01302cf86e4489bffc968
Bcc: lwn@lwn.net, gitster@pobox.com
-What's cooking in git.git (Nov 2023, #09; Mon, 27)
+What's cooking in git.git (Dec 2023, #01; Sat, 9)
--------------------------------------------------
Here are the topics that have been cooking in my tree. Commits
@@ -48,13 +48,227 @@ Release tarballs are available at:
--------------------------------------------------
[New Topics]
+* jp/use-diff-index-in-pre-commit-sample (2023-12-03) 1 commit
+ - hooks--pre-commit: detect non-ASCII when renaming
+
+ The sample pre-commit hook that tries to catch introduction of new
+ paths that use potentially non-portable characters did not notice
+ an existing path getting renamed to such a problematic path, when
+ rename detection was enabled.
+
+ Will merge to 'next'.
+ source: <pull.1291.v2.git.git.1701360836307.gitgitgadget@gmail.com>
+
+
+* mk/doc-gitfile-more (2023-12-03) 1 commit
+ - doc: make the gitfile syntax easier to discover
+
+ Doc update.
+
+ Will merge to 'next'.
+ source: <20231128065558.1061206-1-mk+copyleft@pimpmybyte.de>
+
+
+* ps/ref-tests-update-more (2023-12-03) 10 commits
+ - t6301: write invalid object ID via `test-tool ref-store`
+ - t5551: stop writing packed-refs directly
+ - t5401: speed up creation of many branches
+ - t4013: simplify magic parsing and drop "failure"
+ - t3310: stop checking for reference existence via `test -f`
+ - t1417: make `reflog --updateref` tests backend agnostic
+ - t1410: use test-tool to create empty reflog
+ - t1401: stop treating FETCH_HEAD as real reference
+ - t1400: split up generic reflog tests from the reffile-specific ones
+ - t0410: mark tests to require the reffiles backend
+
+ Tests update.
+
+ Will merge to 'next'.
+ source: <cover.1701242407.git.ps@pks.im>
+
+
+* sh/completion-with-reftable (2023-12-03) 2 commits
+ - completion: stop checking for reference existence via `test -f`
+ - completion: refactor existence checks for special refs
+
+ Command line completion script (in contrib/) learned to work better
+ with the reftable backend.
+
+ Expecting a reroll.
+ source: <20231130202404.89791-1-stanhu@gmail.com>
+
+
+* en/header-cleanup (2023-12-03) 12 commits
+ - treewide: remove unnecessary includes in source files
+ - treewide: add direct includes currently only pulled in transitively
+ - trace2/tr2_tls.h: remove unnecessary include
+ - submodule-config.h: remove unnecessary include
+ - pkt-line.h: remove unnecessary include
+ - line-log.h: remove unnecessary include
+ - http.h: remove unnecessary include
+ - fsmonitor--daemon.h: remove unnecessary includes
+ - blame.h: remove unnecessary includes
+ - archive.h: remove unnecessary include
+ - treewide: remove unnecessary includes in source files
+ - treewide: remove unnecessary includes from header files
+
+ Remove unused header "#include".
+
+ Has a few interactions with topics in flight.
+ source: <pull.1617.git.1701585682.gitgitgadget@gmail.com>
+
+
+* jc/revision-parse-int (2023-12-09) 1 commit
+ - revision: parse integer arguments to --max-count, --skip, etc., more carefully
+
+ The command line parser for the "log" family of commands was too
+ loose when parsing certain numbers, e.g., silently ignoring the
+ extra 'q' in "git log -n 1q" without complaining, which has been
+ tightened up.
+
+ Will merge to 'next'.
+ source: <xmqq5y181fx0.fsf_-_@gitster.g>
+
+
+* jk/bisect-reset-fix (2023-12-09) 1 commit
+ - bisect: always clean on reset
+
+ "git bisect reset" has been taught to clean up state files and refs
+ even when BISECT_START file is gone.
+
+ Will merge to 'next'.
+ source: <20231207065341.GA778781@coredump.intra.peff.net>
+
+
+* jk/implicit-true (2023-12-09) 7 commits
+ - fsck: handle NULL value when parsing message config
+ - trailer: handle NULL value when parsing trailer-specific config
+ - submodule: handle NULL value when parsing submodule.*.branch
+ - help: handle NULL value for alias.* config
+ - trace2: handle NULL values in tr2_sysenv config callback
+ - setup: handle NULL value when parsing extensions
+ - config: handle NULL value when parsing non-bools
+ (this branch is used by jk/config-cleanup.)
+
+ Some codepaths did not correctly parse configuration variables
+ specified with valueless "true", which has been corrected.
+
+ Will merge to 'next'.
+ source: <20231207071030.GA1275835@coredump.intra.peff.net>
+
+
+* jk/config-cleanup (2023-12-09) 9 commits
+ - sequencer: simplify away extra git_config_string() call
+ - gpg-interface: drop pointless config_error_nonbool() checks
+ - push: drop confusing configset/callback redundancy
+ - config: use git_config_string() for core.checkRoundTripEncoding
+ - diff: give more detailed messages for bogus diff.* config
+ - config: use config_error_nonbool() instead of custom messages
+ - imap-send: don't use git_die_config() inside callback
+ - git_xmerge_config(): prefer error() to die()
+ - config: reject bogus values for core.checkstat
+ (this branch uses jk/implicit-true.)
+
+ Code clean-up around use of configuration variables.
+
+ Will merge to 'next'.
+ source: <20231207071030.GA1275835@coredump.intra.peff.net>
+ source: <20231207072338.GA1277727@coredump.intra.peff.net>
+
+
+* jk/end-of-options (2023-12-09) 1 commit
+ - parse-options: decouple "--end-of-options" and "--"
+
+ "git log --end-of-options --rev -- --path" learned to interpret
+ "--rev" as a rev, and "--path" as a path, as expected.
+
+ Will merge to 'next'.
+ source: <20231206222145.GA136253@coredump.intra.peff.net>
+
+
+* ps/clone-into-reftable-repository (2023-12-09) 7 commits
+ - builtin/clone: create the refdb with the correct object format
+ - builtin/clone: skip reading HEAD when retrieving remote
+ - builtin/clone: set up sparse checkout later
+ - builtin/clone: fix bundle URIs with mismatching object formats
+ - remote-curl: rediscover repository when fetching refs
+ - setup: allow skipping creation of the refdb
+ - setup: extract function to create the refdb
+
+ "git clone" has been prepared to allow cloning a repository with
+ non-default hash function into a repository that uses the reftable
+ backend.
+
+ Will merge to 'next'?
+ source: <cover.1701863960.git.ps@pks.im>
+
+
+* rs/incompatible-options-messages (2023-12-09) 7 commits
+ - worktree: simplify incompatibility message for --orphan and commit-ish
+ - worktree: standardize incompatibility messages
+ - clean: factorize incompatibility message
+ - revision, rev-parse: factorize incompatibility messages about - -exclude-hidden
+ - revision: use die_for_incompatible_opt3() for - -graph/--reverse/--walk-reflogs
+ - repack: use die_for_incompatible_opt3() for -A/-k/--cruft
+ - push: use die_for_incompatible_opt4() for - -delete/--tags/--all/--mirror
+
+ Clean-up code that handles combinations of incompatible options.
+
+ Will merge to 'next'.
+ source: <20231206115215.94467-1-l.s.r@web.de>
+
+--------------------------------------------------
+[Stalled]
+
+* pw/rebase-sigint (2023-09-07) 1 commit
+ - rebase -i: ignore signals when forking subprocesses
+
+ If the commit log editor or other external programs (spawned via
+ "exec" insn in the todo list) receive internactive signal during
+ "git rebase -i", it caused not just the spawned program but the
+ "Git" process that spawned them, which is often not what the end
+ user intended. "git" learned to ignore SIGINT and SIGQUIT while
+ waiting for these subprocesses.
+
+ Expecting a reroll.
+ cf. <12c956ea-330d-4441-937f-7885ab519e26@gmail.com>
+ source: <pull.1581.git.1694080982621.gitgitgadget@gmail.com>
+
+
+* tk/cherry-pick-sequence-requires-clean-worktree (2023-06-01) 1 commit
+ - cherry-pick: refuse cherry-pick sequence if index is dirty
+
+ "git cherry-pick A" that replays a single commit stopped before
+ clobbering local modification, but "git cherry-pick A..B" did not,
+ which has been corrected.
+
+ Expecting a reroll.
+ cf. <999f12b2-38d6-f446-e763-4985116ad37d@gmail.com>
+ source: <pull.1535.v2.git.1685264889088.gitgitgadget@gmail.com>
+
+
+* jc/diff-cached-fsmonitor-fix (2023-09-15) 3 commits
+ - diff-lib: fix check_removed() when fsmonitor is active
+ - Merge branch 'jc/fake-lstat' into jc/diff-cached-fsmonitor-fix
+ - Merge branch 'js/diff-cached-fsmonitor-fix' into jc/diff-cached-fsmonitor-fix
+ (this branch uses jc/fake-lstat.)
+
+ The optimization based on fsmonitor in the "diff --cached"
+ codepath is resurrected with the "fake-lstat" introduced earlier.
+
+ It is unknown if the optimization is worth resurrecting, but in case...
+ source: <xmqqr0n0h0tw.fsf@gitster.g>
+
+--------------------------------------------------
+[Cooking]
+
* ad/merge-file-diff-algo (2023-11-22) 1 commit
- merge-file: add --diff-algorithm option
"git merge-file" learned to take the "--diff-algorithm" option to
use algorithm different from the default "myers" diff.
- Will merge to 'next'?
+ Will merge to 'next'.
source: <pull.1606.v2.git.git.1700507932937.gitgitgadget@gmail.com>
@@ -65,7 +279,8 @@ Release tarballs are available at:
source: <pull.1609.git.git.1700639764041.gitgitgadget@gmail.com>
-* jc/checkout-B-branch-in-use (2023-11-23) 2 commits
+* jc/checkout-B-branch-in-use (2023-12-09) 3 commits
+ - fixup! checkout: forbid "-B <branch>" from touching a branch used elsewhere
- checkout: forbid "-B <branch>" from touching a branch used elsewhere
- checkout: refactor die_if_checked_out() caller
@@ -76,7 +291,7 @@ Release tarballs are available at:
unbreak you, if you are used to the current behaviour that "-B"
overrides the safety.
- Needs review and documentation updates.
+ Needs review.
source: <xmqqjzq9cl70.fsf@gitster.g>
@@ -121,18 +336,26 @@ Release tarballs are available at:
source: <cover.1700549493.git.ps@pks.im>
-* en/complete-sparse-checkout (2023-11-27) 4 commits
+* en/complete-sparse-checkout (2023-12-03) 4 commits
- completion: avoid user confusion in non-cone mode
- completion: avoid misleading completions in cone mode
- completion: fix logic for determining whether cone mode is active
- completion: squelch stray errors in sparse-checkout completion
- source: <pull.1349.v2.git.1700985086.gitgitgadget@gmail.com>
+ Command line completion (in contrib/) learned to complete path
+ arguments to the "add/set" subcommands of "git sparse-checkout"
+ better.
+
+ Will merge to 'next'.
+ source: <pull.1349.v3.git.1701583024.gitgitgadget@gmail.com>
* jb/reflog-expire-delete-dry-run-options (2023-11-26) 1 commit
- builtin/reflog.c: fix dry-run option short name
+ Command line parsing fix for "git reflog".
+
+ Will merge to 'next'.
source: <20231126000514.85509-1-josh@brob.st>
@@ -140,71 +363,36 @@ Release tarballs are available at:
- orphan/unborn: fix use of 'orphan' in end-user facing messages
- orphan/unborn: add to the glossary and use them consistently
+ Doc updates to clarify what an "unborn branch" means.
+
+ Comments?
source: <xmqq4jhb977x.fsf@gitster.g>
* rs/column-leakfix (2023-11-27) 1 commit
- column: release strbuf and string_list after use
+ Leakfix.
+
+ Will merge to 'next'.
source: <f087137d-a5aa-487e-a1cb-0ad7117b38ed@web.de>
* rs/i18n-cannot-be-used-together (2023-11-27) 1 commit
- i18n: factorize even more 'incompatible options' messages
- source: <e6eb12e4-bb63-473c-9c2f-965a4d5981ad@web.de>
-
---------------------------------------------------
-[Stalled]
-
-* pw/rebase-sigint (2023-09-07) 1 commit
- - rebase -i: ignore signals when forking subprocesses
+ Clean-up code that handles combinations of incompatible options.
- If the commit log editor or other external programs (spawned via
- "exec" insn in the todo list) receive internactive signal during
- "git rebase -i", it caused not just the spawned program but the
- "Git" process that spawned them, which is often not what the end
- user intended. "git" learned to ignore SIGINT and SIGQUIT while
- waiting for these subprocesses.
-
- Expecting a reroll.
- cf. <12c956ea-330d-4441-937f-7885ab519e26@gmail.com>
- source: <pull.1581.git.1694080982621.gitgitgadget@gmail.com>
-
-
-* tk/cherry-pick-sequence-requires-clean-worktree (2023-06-01) 1 commit
- - cherry-pick: refuse cherry-pick sequence if index is dirty
-
- "git cherry-pick A" that replays a single commit stopped before
- clobbering local modification, but "git cherry-pick A..B" did not,
- which has been corrected.
-
- Expecting a reroll.
- cf. <999f12b2-38d6-f446-e763-4985116ad37d@gmail.com>
- source: <pull.1535.v2.git.1685264889088.gitgitgadget@gmail.com>
-
-
-* jc/diff-cached-fsmonitor-fix (2023-09-15) 3 commits
- - diff-lib: fix check_removed() when fsmonitor is active
- - Merge branch 'jc/fake-lstat' into jc/diff-cached-fsmonitor-fix
- - Merge branch 'js/diff-cached-fsmonitor-fix' into jc/diff-cached-fsmonitor-fix
- (this branch uses jc/fake-lstat.)
-
- The optimization based on fsmonitor in the "diff --cached"
- codepath is resurrected with the "fake-lstat" introduced earlier.
-
- It is unknown if the optimization is worth resurrecting, but in case...
- source: <xmqqr0n0h0tw.fsf@gitster.g>
+ Will merge to 'next'.
+ source: <e6eb12e4-bb63-473c-9c2f-965a4d5981ad@web.de>
---------------------------------------------------
-[Cooking]
* ac/fuzz-show-date (2023-11-20) 1 commit
- fuzz: add new oss-fuzz fuzzer for date.c / date.h
- Subject approxidate() and show_date() macchinery to OSS-Fuzz.
+ Subject approxidate() and show_date() machinery to OSS-Fuzz.
- Will merge to 'next'?
+ Will merge to 'next'.
source: <pull.1612.v4.git.1700243267653.gitgitgadget@gmail.com>
@@ -225,6 +413,8 @@ Release tarballs are available at:
without adding anything in .gitattributes files, which would be
useful in magic pathspec, e.g., ":(attr:builtin_objectmode=100755)"
to limit to executables.
+
+ Will merge to 'next' after squashing the fix-up in?
source: <20231116054437.2343549-1-jojwang@google.com>