sqldump

(coffee) => code

Git, Tags and GitHub

Add a tag:

1
git tag -a v0.1 -m "Version 0.1 Stable"

Push tags to GitHub:

1
git push origin --tags

Delete tag locally:

1
git tag -d v0.1

Push to GitHub:

1
git push origin --tags

Rinse.

Repeat.