Answers for "github rename commit message after push"

1

rename a commit pushed

git commit --amend -m "Your new message here"
Posted by: Guest on June-28-2021
12

git amend commit message after push

$ git commit --amend -m "New and correct message"
Posted by: Guest on October-23-2020
0

change commit message after push

git push --force <repository> <branch>
Posted by: Guest on December-15-2020

Browse Popular Code Answers by Language