From 33cfceb8bc9eb0d828a0a2d7bdfb45c8b97cb03a Mon Sep 17 00:00:00 2001 From: CCOSTAN Date: Tue, 11 Oct 2016 19:06:21 +0000 Subject: [PATCH] sharing the Shell Script --- shell_scripts/gitupdate.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 shell_scripts/gitupdate.sh diff --git a/shell_scripts/gitupdate.sh b/shell_scripts/gitupdate.sh new file mode 100755 index 00000000..f2c1920f --- /dev/null +++ b/shell_scripts/gitupdate.sh @@ -0,0 +1,9 @@ +#!/bin/bash +cd /home/hass/.homeassistant +git add . +git status +echo -n "Enter the Description for the Change: " +read CHANGE_MSG +git commit -m "${CHANGE_MSG}" +git push origin master +