How do I use it?

To set up your website:

git config --global user.name $username
git config --global user.email $email_address
(Reminder: Your email address will be public.)
git clone $repository_url
git add .
git commit -m $comment
git push origin master
(You'll be prompted for your GitLab login details.)

To update your website:

git add .
git commit -m $comment
git push origin master

To delete your website: