Normally, when you rebase another author\'s commit with git, git adds a Commit: header with your name and email address. I have a situation where I don\'t want this
Try setting the environment variable GIT_COMMITTER_NAME and GIT_COMMITTER_EMAIL when rebasing (maybe also GIT_COMMITTER_DATE, too). (This will effect all commits created now, though.)