Here is what I did:
git fetch origin
git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 2 commits.
git pull
Already up-to-date.
But git pullit doesn't seem to work! This is the result that I get when I try git checkout master:
git checkout master
Already on 'master'
Your branch is ahead of 'origin/master' by 2 commits.
Why is this? How to fix it?
source
share