como mudar uma mensagem de confirmação após push
git commit --amend -m "New commit message"
Then
git push --force
and you're done
Weary Wryneck
git commit --amend -m "New commit message"
Then
git push --force
and you're done
git commit --amend
//Back all commits
git reset --soft HEAD^
//If you see 'More', try alternatives
//Back one commit
git reset --soft HEAD~1
//Back two commit
git reset --soft HEAD~2