I made some changes to a project on Github from my home computer yesterday. Now I've just made some new changes on the same project, from my work computer.
I tried to commit and push with git push
but git said:
error: failed to push some refs to 'https://github.com/...'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. If you did not intend to push that branch, you may want to
hint: specify branches to push or set the 'push.default' configuration variable
hint: to 'simple', 'current' or 'upstream' to push only the current branch.
So I had to use the following command:
git push --set-upstream origin BEHST;
The push went alright but I cannot see my changes on my Github webpage.
Does anyone know why?
How can I propagate my git changes to my Github webpage?