luanfonceca / luanfonceca/django-first-step
Create a github-page static site.
Open
enhancement
- Dominant language
- Python
- Stars
- 1
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
The process of create a static site in the github-pages is simple, just create a branch called `gh-pages` with an index.html and, I think, the rest of the static files.
``` sh
# Creating the branch
$ git checkout -b gh-pages
# Adding all files of our static site
$ git add --all
# Committing your changes
$ git commit -m "fix #3 - Your commit message."
# Pushing the commits to our repository
$ git push origin gh-pages
# See the result
$ open http://www.luanfonceca.github.com/django-first-step
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.