Luca
Luca

Reputation: 20919

Can not see a push notification on GitHub after i push to the remote repository

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 ?

Upvotes: 1

Views: 541

Answers (1)

Christopher Peisert
Christopher Peisert

Reputation: 24104

The git message Everything up-to-date indicates 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:

$ git status

will show a message such as the following:

# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.

Now when you push the local branch to the remote branch, git displays a message such as:

$ git push origin master
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 290 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
To [email protected]:user/project.git
   d478973..abc3741  master -> master

Upvotes: 2

Related Questions