When rewriting a Git repository's history, how do you remove sign-offs (as created by git commit -s
or git commit --signoff
)?
git filter-branch
's commit-filter
seems to only support the variables used by git commit-tree
:
GIT_AUTHOR_NAME
GIT_AUTHOR_EMAIL
GIT_AUTHOR_DATE
GIT_COMMITTER_NAME
GIT_COMMITTER_EMAIL
GIT_COMMITTER_DATE
EMAIL