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, 10 insertions, 0 deletions
diff --git a/bin/.local/bin/gitit b/bin/.local/bin/gitit
new file mode 100755
index 0000000..af3eeec
--- /dev/null
+++ b/bin/.local/bin/gitit
@@ -0,0 +1,10 @@
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