This one is not mine. It's, actually, a transcript. Please, check out the source at the bottom
#
# Local
#
# Create a website
mkdir website && cd website
git init
echo 'Hello, world!' > index.html
git add index.html
git commit -q -m "The humble beginnings of my web site."
# add remotes
git …