sharing the Shell Script

This commit is contained in:
CCOSTAN 2016-10-11 19:06:21 +00:00
parent 9a490752d4
commit 33cfceb8bc

9
shell_scripts/gitupdate.sh Executable file
View File

@ -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