Answers for "git edit merge commit message"

0

git merge message editor

1) press "i" (i for insert)
2) write your merge message
3) press "esc" (escape)
4) write ":wq" (write & quit)
5) then press enter
Posted by: Guest on May-10-2021
0

git edit merge commit message

For current Git versions (2020+), just do git rebase -i -r <parent>, 
then replace in the editor merge -C with merge -c.
This will open the merge commit's message in the editor during rebasing,
where you can change it
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language