How to change default git commit message?
Answers
Answered by
0
Amending the message of older or multiple commit messages
On the command line, navigate to the repository that contains the commit you want to amend.Use the git rebase -i HEAD~n command to display a list of the last n commits in your default text editor.
On the command line, navigate to the repository that contains the commit you want to amend.Use the git rebase -i HEAD~n command to display a list of the last n commits in your default text editor.
Similar questions