diff options
author | Rohit Ashiwal <rohit.ashiwal265@gmail.com> | 2019-11-01 19:30:00 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-02 15:36:23 +0900 |
commit | cbd8db17acb77ea646c739bf96c31fe7484bc491 (patch) | |
tree | 3648b99f63cbb6aac5f5f89700f24dc7fa141d49 /sequencer.h | |
parent | c068bcc59b4f16322a77b6a47b53d44b05c51fec (diff) | |
download | git-cbd8db17acb77ea646c739bf96c31fe7484bc491.tar.gz |
rebase -i: support --committer-date-is-author-date
rebase am already has this flag to "lie" about the committer date
by changing it to the author date. Let's add the same for
interactive machinery.
Signed-off-by: Rohit Ashiwal <rohit.ashiwal265@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
-rw-r--r-- | sequencer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sequencer.h b/sequencer.h index 0c494b83d4..e6cba468db 100644 --- a/sequencer.h +++ b/sequencer.h @@ -43,6 +43,7 @@ struct replay_opts { int verbose; int quiet; int reschedule_failed_exec; + int committer_date_is_author_date; int mainline; |