Luogo per slides collaborative e online, scritte in markdown.
- Copia cartella esistente nel repo in locale.
- Cambia nome cartella, modifica metadati
index.html
, lavora su quello.
-
Per feedback immediati sul layout, apri
index.html
con il browser. -
Ogni tanto, fai il commit delle modifiche al file. Prima al
master
, ma soprattutto algh-pages
:git add .
orgit add *
git status // to see what changes are going to be commited
git commit -m 'Some descriptive commit message'
git push origin master
git checkout gh-pages
// go to thegh-pages branch
git rebase master
// bringgh-pages
up to date withmaster
git push origin gh-pages
// commit the changesgit checkout master
// return to themaster
branch