I did a push of my latest changes
git push origin master
then I amended the commit message with an interactive rebase, i.e.
git rebase -i HEAD~5
and changed the message in the last commit.
This saved successfully, but when I did a git push origin master
it just says Everything up-to-date
.
Now the git history doesn't show the wording change as actually have been made?
However when I do a git commit --amend -m"msg"
and then try and push the change is 'seen'.