Add the options --committer-date-is-author-date and --ignore-date to git-rebase. They were introduced in commit a79ec62d0 for git-am. Signed-off-by: Michele Ballabio <barra_cuda@xxxxxxxxxxxx> --- I'm not sure if force_rebase should be set in this case. Documentation/git-rebase.txt | 5 +++++ git-rebase.sh | 3 +++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index 6cb902a..457340c 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -269,6 +269,11 @@ OPTIONS (see linkgit:git-apply[1]) that applies the patch. Incompatible with the --interactive option. +--committer-date-is-author-date:: +--ignore-date:: + These flags are passed to 'git-am' to easily change the dates + of the rebased commits (see linkgit:git-am[1]). + -i:: --interactive:: Make a list of the commits which are about to be rebased. Let the diff --git a/git-rebase.sh b/git-rebase.sh index e38d68a..d89d71c 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -309,6 +309,9 @@ do ;; esac ;; + --committer-date-is-author-date|--ignore-date) + git_am_opt="$git_am_opt $1" + ;; -C*) git_am_opt="$git_am_opt $1" ;; -- 1.6.2.22.gc2ac -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html