Korzystanie z programu Git (index)


Korzystanie z programu Git (8) - GitHub Pages

WPROWADZENIE

GitHub udostępnił możliwość tworzenia stron internetowych. Można używać programu Jekyll (a popular static site generator), oprócz zwykłych stron HTML. Jekyll pozwala używać Markdown zamiast HTML.


https://pages.github.com/

https://jekyllrb.com/   (strona domowa Jekyll)

1. Create a repository username.github.io [Public, bez README]

2. Clone the repository:
git clone https://github.com/username/username.github.io

3. Enter the project folder and add files:
README.md, LICENSE, .gitignore, index.html

4. Add, commit, and push your changes:
git add --all
git commit -m "Initial commit"
git push -u origin master

5. Fire up a browser and go to https://username.github.io [działa!].

ZADANIE 8.1


Korzystanie z programu Git (index)