When I create a commit with git
using command line, the commit message is not altered.
When I create a commit though PhpStorm's GUI with the checkbox “Sign-off commit” checked, PhpStorm add this line at the end of my commit message:
Signed-off-by: Firstname Lastname <[email protected]>
How to prevent this? I don't want PhpStorm to write “Signed-off-by: …” at the end of every commit.
Here is my git configuration:
$ git config --list
commit.gpgsign=false
user.signingkey=…
user.name=Firstname Lastname
[email protected]
push.default=current
core.excludesfile=/home/…/.gitignore_global
fetch.prune=true
rebase.autosquash=true
gpg.program=gpg2
format.signoff=false
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
[email protected]:Victoire/victoire.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
commit.gpgsign=true