git - Can not see a push notification on GitHub after i push to the remote repository -
after commit , push remote repository command line:
git commit -m 'id: xxxxxx comments' git push origin feature/xxxxx up-to-date
but when go github, can't see push on news feed, luca pushed feature/xxxx @ xxxxxxxxx
i on concerned branch, checked git branch
command.
am missing ?
the git message everything up-to-date
indicates remote branch pushing in sync local branch being pushed. hence, there no news feed on github since nothing on remote branch changed.
if local branch out of sync remote branch, executing:
$ git status
will show message such following:
# on branch master # branch ahead of 'origin/master' 1 commit.
now when push local branch remote branch, git displays message such as:
$ git push origin master counting objects: 5, done. delta compression using 2 threads. compressing objects: 100% (3/3), done. writing objects: 100% (3/3), 290 bytes, done. total 3 (delta 2), reused 0 (delta 0) git@github.com:user/project.git d478973..abc3741 master -> master
Comments
Post a Comment