How to fix HTTP 404 on Github Pages?

I had just one commit with all my files. I pushed an empty commit, refreshed the page and it worked. git commit –allow-empty -m “Trigger rebuild” git push If this doesn’t work, as @Hendrikto pointed out in the comments, check out the Github status page and make sure GitHub Pages are operational.

How do I configure GitHub to use non-supported Jekyll site plugins?

Depending if you deal with a User/Organization (UO) site or a Project site (P), do : from your working folder git init git remote add origin [email protected]:userName/userName.github.io.git (UO) or git remote add origin [email protected]:userName/repositoryName.git (P) jekyll new . creates your code base in _config.yml, set the baseurl parameter to baseurl: ” (UO) or baseurl: ‘/repositoryName’ … Read more

Authenticate with GitHub using a token

Your curl command is entirely wrong. You should be using the following curl -H ‘Authorization: token <MYTOKEN>’ … That aside, that doesn’t authorize your computer to clone the repository if in fact it is private. (Taking a look, however, indicates that it is not.) What you would normally do is the following: git clone https://scuzzlebuzzle:<MYTOKEN>@github.com/scuzzlebuzzle/ol3-1.git … Read more