Add back commit script

This commit is contained in:
DariusIII
2019-06-04 09:45:58 +02:00
parent d6f4ec94a8
commit 9941a110f5
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
EXIT_STATUS=0
# Use composer to call php-cs-fixer
composer fix-style
# Add changes.
git add -i
# Edit changelog.
nano Changelog
# Add changes to changelog.
git add Changelog
php artisan migrate
# Commit changes.
git commit