How to fix HTTP 404 on Github Pages?
github, github-pages
Solution
Four months ago I have contacted the support and they told me it was a problem on their side, they have temporarily fix it (for the current commit).
Today I tried again
I deleted the gh-pages branch on github
`git push origin --delete gh-pages`
I deleted the gh-pages branch on local
`git branch -D gh-pages`
I reinitialized git
`git init`
I recreated the branch on local
`git branch gh-pages`
I pushed the gh-pages branch to github
`git push origin gh-pages`
Works fine, I can finally update my files on the page.
Problem
Here is my GitHub repository on the `gh-pages` branch. Everything looks good, I have my `index.html`, my CSS, JS and pictures folders. But when I access http://roine.github.com/p1 I get HTTP 404 not found. Any explanation and solution?