I made some modifications, then run the following commands
git add .
git commit -m'my message'
after that I run git push and apparently, the push was successful.
so I run
git status
and I got the following status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
so I run git push again, this time git returned the following message
Everything up-to-date
if I run git log, I get the following message(2 last commits)
commit a85e6bd90d07d50d66d1b8d057e90df06067be10 (HEAD -> master, upstream/master)
Author: myname <myemail@gmail.com>
Date: Sat Aug 15 11:10:09 2020 -0300
glossary file
commit 87e0fcbf40f4faccba41375f30dde2aadc4336b6 (origin/master)
Author: myname <myname@gmail.com>
Date: Fri Dec 27 16:40:22 2019 -0200
Added Maintenance Work Request and Non Maintenance Work Request entities.
why there seems to be a commit in my local repo that is not in remote repo even after push to remote was successful?