[PATCH v2] doc: cherry-pick: note --no-commit skips CHERRY_PICK_HEAD
From: Aleksei Sviridkin <hidden>
Date: 2026-09-04 12:44:38
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
The list of what happens when a change is hard to apply states without
qualification that CHERRY_PICK_HEAD is set. Under --no-commit it is
not: d7e5c0cbfb (Introduce CHERRY_PICK_HEAD, 2011-02-19) skips the ref
on purpose there, expecting the user to pick further commits and edit
the result before committing.
The option's own description says nothing about the ref or about
authorship. "git commit" reads the author of a cherry-pick from
CHERRY_PICK_HEAD, so without it a plain commit records you, not the
original author, as the author. Picking a single commit this way
still leaves its log message in MERGE_MSG, so the result reads like a
faithful pick apart from the author.
Assisted-by: LLM
Signed-off-by: Aleksei Sviridkin <redacted>
---
Changes since v1:
- dropped the t3507 test patch: the shared !opts->no_commit guard
is already exercised by the existing clean-pick test, so it added
no real coverage
- keep only the doc clarification, and make the --no-commit entry
self-contained
Documentation/git-cherry-pick.adoc | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Documentation/git-cherry-pick.adoc b/Documentation/git-cherry-pick.adoc
index 42b41923d5..24a28d4e65 100644
--- a/Documentation/git-cherry-pick.adoc
+++ b/Documentation/git-cherry-pick.adoc@@ -25,7 +25,8 @@ happens: 1. The current branch and `HEAD` pointer stay at the last commit successfully made. 2. The `CHERRY_PICK_HEAD` ref is set to point at the commit that - introduced the change that is difficult to apply. + introduced the change that is difficult to apply, unless the + `--no-commit` option was given. 3. Paths in which the change applied cleanly are updated both in the index file and in your working tree. 4. For conflicting paths, the index file records up to three
@@ -101,6 +102,11 @@ OPTIONS + This is useful when cherry-picking more than one commits' effect to your index in a row. ++ +This option does not record `CHERRY_PICK_HEAD`, so a plain `git commit` +afterwards records you, not the original author, as the author. When a +single commit is picked this way, `git commit -c <commit>` keeps the +original authorship and log message. -s:: --signoff::
base-commit: e9019fcafe0040228b8631c30f97ae1adb61bcdc -- 2.55.0