After i commit and push to the remote repository from the command line:
git commit -m 'ID: XXXXXX Some comments'
git push origin feature/xxxxx
Everything up-to-date
But when i go to github, i can’t see my push on the News Feed, something like luca pushed to feature/xxxx at xxxxxxxxx
I am obviously on the concerned branch, i checked with a git branch command.
Am i missing something ?
The git message
Everything up-to-dateindicates that the remote branch you are pushing to is already in sync with the local branch being pushed. Hence, there is no news feed on GitHub since nothing on the remote branch changed.If your local branch is out of sync with the remote branch, then executing:
will show a message such as the following:
Now when you push the local branch to the remote branch, git displays a message such as: