Pubication pages html sur branche master seulement :
... à developper ...
Note
Le contenu de ce repo test est copié du guide “Biologist guide to computing” accessible sur cette page Github
Repo différent de user.github.io –> publication pages html sur branches master ou gh-pages :
git clone https://github.com/olitur/test.git
cd .\test\
sphinx-quickstart.exe
.\make.bat html
.gitignore
):git status
git add -A
git commit -m "première compilation et synchro"
git push origin master
git checkout --orphan gh-pages
git rm -rf *
git checkout master build/html
mv ./build/html/* ./
git rm -rf build
git add -A
git commit -m "première publication pages html"
git push origin gh-pages
git checkout master