From 9941a110f592b4ac98d4fce23ed98e09bc7dfb8e Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 4 Jun 2019 09:45:58 +0200 Subject: [PATCH] Add back commit script --- commit | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 commit diff --git a/commit b/commit new file mode 100644 index 000000000..4a4c50052 --- /dev/null +++ b/commit @@ -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