I want to merge a branch in GIT and keep the COMMIT MESSAGE.
Not wanted: git merge --no-edit
This keeps the default message: Merge branch 'master' into develop
Wanted: I want to copy the message: ACC-9187 Reformat code instead of the Merge branch ..... ==> The merge must contain the same message.
Offcourse I don't want to type the whole message again...: not: git merge -m "ACC-9187 Reformat code"
==> Any suggestions? Thanks!