summaryrefslogtreecommitdiff
path: root/bin/.local/bin/gitit
diff options
context:
space:
mode:
Diffstat (limited to 'bin/.local/bin/gitit')
-rwxr-xr-xbin/.local/bin/gitit10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/.local/bin/gitit b/bin/.local/bin/gitit
deleted file mode 100755
index af3eeec..0000000
--- a/bin/.local/bin/gitit
+++ /dev/null
@@ -1,10 +0,0 @@
1#!/bin/sh
2set -e
3printf "\033[0;32mDeploying updates to GitHub...\033[0m\n"
4git add .
5msg="changes"
6if [ -n "$*" ]; then
7 msg="$*"
8fi
9git commit -m "$msg"
10git push origin master