Search on pelican github pages on google-> make various things. I was able to do it, but I stumbled on it publicly.
The user page site on github pages only exposes the files at master
. https://help.github.com/articles/user-organization-and-project-pages/
At first I wasn't sure, and I was confused by doing ghp-import output
and switching the branch to gh-pages
.
master
, setting files such as py css htmlmake html
-> ghp-import output
-> git push origin gh-pages: master
pushes the html output to gh-pages
to the remote master
. It will be published now.setting
or something in the remote repository with protection and save the settings with git push origin master: setting
.I made it like that. It doesn't have to be master
.
Recommended Posts