Github Pages

Suppose you want to create a static fluent website quickly that looks good across different devices. You know HTML but would also like to use markdown to speed up the content creation. If you have a Github account, then making a web site is easy using Github Pages.

Steps

Troubleshooting

make sure you configure your 'user.name' and 'user.email' in git

You get this error when you try to push your local repo.

alt text

SOLUTION:

From the command line, run this:

git config --global user.name "Fred Flintstone"
git config --global user.email "fred@slate.com"

References