diff options
author | Rohit Ashiwal <rohit.ashiwal265@gmail.com> | 2019-11-01 15:00:02 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-02 07:37:12 +0100 |
commit | 08187b4cbac2b2f870bb9c786d545b67f0262f74 (patch) | |
tree | 3c983f7377480a3df4894ea1016d38fe798e7de8 /sequencer.h | |
parent | sequencer: rename amend_author to author_to_rename (diff) | |
download | git-08187b4cbac2b2f870bb9c786d545b67f0262f74.tar.xz git-08187b4cbac2b2f870bb9c786d545b67f0262f74.zip |
rebase -i: support --ignore-date
rebase am already has this flag to "lie" about the author date
by changing it to the committer (current) 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 e6cba468db..73d0515a3e 100644 --- a/sequencer.h +++ b/sequencer.h @@ -44,6 +44,7 @@ struct replay_opts { int quiet; int reschedule_failed_exec; int committer_date_is_author_date; + int ignore_date; int mainline; |