Is there an option like --author of git-commit for git-merge?
We maintain a staging environment where some changes must be performed. Some limitations make us to use onl
First, prevent the merge from creating the commit:
git merge --no-commit …
Then, do the commit manually:
git commit --author="A. U. Thor "