`do_pick` is the git-cherry-pick wrapper in git-rebase--interactive
that is used to implement many of the to-do list commands.
Eventually, the complete `do_pick` interface will be exposed to the
user in some form or another and those commands will become simple
aliases for the `do_pick` options now used to implement them.

Add the git-commit option `--reset-author` to the options pool of
`do_pick`. It rewrites the author date and name of the picked commit
to match the committer date and name.

If `--reset-author` is passed to `do_pick`, set the `rewrite` flag
and relay the option to the git-commit command line which creates the
final commit. If `--amend` is not passed as well, the fresh
authorship effect is achieved by the mere fact that we are creating a
new commit.

Signed-off-by: Fabian Ruch <baf...@gmail.com>
---
 git-rebase--interactive.sh | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 2119d00..a9fcb76 100644
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -464,10 +464,18 @@ record_in_rewritten() {
 
 # Apply the changes introduced by the given commit to the current head.
 #
-# do_pick [--amend] [--file <file>] [--edit] <commit>
+# do_pick [--reset-author] [--amend] [--file <file>] [--edit] <commit>
 #
 # Wrapper around git-cherry-pick.
 #
+# --reset-author
+#     Pretend the changes were made for the first time. Declare that the
+#     authorship of the resulting commit now belongs to the committer.
+#     This also renews the author timestamp. This creates a fresh
+#     commit.
+#
+#     _This is not a git-cherry-pick option._
+#
 # --amend
 #     After picking <commit>, replace the current head commit with a new
 #     commit that also introduces the changes of <commit>.
@@ -501,6 +509,10 @@ do_pick () {
        while test $# -gt 0
        do
                case "$1" in
+               --reset-author)
+                       rewrite=y
+                       rewrite_author=y
+                       ;;
                --amend)
                        if test "$(git rev-parse HEAD)" = "$squash_onto" || ! 
git rev-parse --verify HEAD
                        then
@@ -562,12 +574,21 @@ do_pick () {
                pick_one ${rewrite:+-n} $1 || return 1
        fi
 
+       if test -n "$rewrite_author" && test -z "$rewrite_amend"
+       then
+               # keep rewrite flag to create a new commit, rewrite
+               # without --reset-author though because it can only be
+               # used with -C, -c or --amend
+               rewrite_author=
+       fi
+
        if test -n "$rewrite"
        then
                git commit --allow-empty --no-post-rewrite -n --no-edit \
                           ${rewrite_amend:+--amend} \
                           ${rewrite_edit:+--edit} \
                           ${rewrite_message:+--file "$rewrite_message"} \
+                          ${rewrite_author:+--reset-author} \
                           ${gpg_sign_opt:+"$gpg_sign_opt"} || return 3
        fi
 
-- 
2.0.0

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to