Command-line shortcuts to make git easier
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lazy-git/g

133 lines
1.7 KiB

10 years ago
#!/bin/bash
function _status {
echo
echo -e "\e[0;33m> git status\e[0m"
echo
git status
echo
}
function _pull {
echo
echo -e "\e[0;33m> git pull\e[0m"
10 years ago
echo
git pull
10 years ago
echo
}
function _send {
_status
10 years ago
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\e[0m"
10 years ago
echo
git push
10 years ago
echo
}
function _stage {
_status
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 and COMMIT.\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
}
10 years ago
case $1 in
"check" | "status")
_status
;;
"pull")
_pull
;;
"send")
10 years ago
_send
;;
"push")
echo -e "\e[0;33m> git push\e[0m"
echo
git push
echo
;;
"stage" | "commit" | "add")
_stage
10 years ago
;;
*)
echo -e "\n\e[0;31m Invalid ACTION '$1', use one of {check/status, pull, send, push, stage/commit} !\e[0m\n";
;;
esac