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