create or drop git database
authorDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 5 May 2010 21:25:58 +0000 (23:25 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 5 May 2010 21:25:58 +0000 (23:25 +0200)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..43265b3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+create: drop
+       mysql -u root < git.sql
+
+drop:
+       echo "drop database git" | mysql -u root