I\'m running into a weird issue with GitHub pages. I pushed a new commit to my personal pages page maltzj.github.io, but the new article isn\'t showing up there. When I exec
I had this problem this week and no solution worked. I don't use Jekyll, only pure static HTML. It just sat three days refusing to update.
Here is what I had to do to get it to publish again.
snapshot
branch from master
.master
branch to the last commit that is live. (Commits tab, green checkmarks indicate published commits)master
.curl https://example.com | grep SMOKETEST
master
again, removing the smoke test.snapshot
branch you need to get your unpublished changes back into master
(cherry-picking gives the commits new ids/hashes, avoiding the risk of anything having cached them from before).master
again.Note: It could be enough to force push to remove the commits that are stuck and getting them back again. The smoke test is almost certainly not required. Cherry-picking may not be required.