diff options
author | Rohit Ashiwal <rohit.ashiwal265@gmail.com> | 2019-11-01 15:00:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-02 07:36:23 +0100 |
commit | cbd8db17acb77ea646c739bf96c31fe7484bc491 (patch) | |
tree | 3648b99f63cbb6aac5f5f89700f24dc7fa141d49 /sequencer.h | |
parent | sequencer: allow callers of read_author_script() to ignore fields (diff) | |
download | git-cbd8db17acb77ea646c739bf96c31fe7484bc491.tar.xz git-cbd8db17acb77ea646c739bf96c31fe7484bc491.zip |
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; |