Layered screen added

This commit is contained in:
Ondřej Hruška
2014-04-01 15:50:46 +02:00
parent ab73e0affd
commit b7f0057eaa
6 changed files with 141 additions and 5 deletions
Executable
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
. check
if [ -z "`git status --porcelain`" ]
then
echo -e "\e[0;31m Nothing to commit.\e[0m"
echo
exit
fi
echo -e "\e[0;32m Going to ADD all, COMMIT and PUSH.\e[0m"
echo -e "\e[0;32m Enter commit message (leave blank to abort).\e[0m"
echo
echo -n -e "\e[1;36m [msg]: \e[0m"
read msg
echo
if [ -z "$msg" ]
then
echo -e "\e[0;31m Aborted.\e[0m"
echo
exit
fi
echo -e "\e[0;33m> git add --all\e[0m"
echo
git add --all
echo
echo -e "\e[0;33m> git commit -m \"$msg\"\e[0m"
echo
git commit -m "$msg"
echo
echo -e "\e[0;33m> git push origin master\e[0m"
echo
git push origin master
echo