I've got strange issue today. So I have forked repository on my github account. I cloned it and introduced some changes. When I pushed it, everything was fine, but respective subpage on github is silent about my change. Now when I take pull or push on that local branch it says everything is up-to-date.
git checkout mychange Switched to branch 'mychange' Your branch is up-to-date with 'origin/mychange'. I've checked whether I work on detached HEAD, but everything is fine.
What's more, I cloned that repo in a different folder, then printed the logs and my commit indeed is there! So why I can't see it on github?

