I created a remote branch for me to do work on. No one else checks into my branch. I just pushed all my file changes to the remote branch and can see it in the remote. I forgot to add something else to my commit message so I ran
git commit --amend
I can see my local branch has my commit additions.
However, when I ran:
git push
my additional commit message aren't pushed to the remote repo. What command do I run such that the remote pushes the additional commit message to go with the files I had edited?