Git reset commit message after push

It's easy to just amend a git commit message:

git commit --amend

If the commit is pushed to a remote repository already:

git commit --amend
git push --force-with-lease  

你可能感兴趣的:(Git reset commit message after push)