removed "origin master" to allow working with other branches

This commit is contained in:
2014-06-21 16:00:22 +02:00
parent 103a7a96d9
commit f07bac1533
+4 -4
View File
@@ -13,9 +13,9 @@ function _status {
function _pull { function _pull {
echo echo
echo -e "\e[0;33m> git pull origin master\e[0m" echo -e "\e[0;33m> git pull\e[0m"
echo echo
git pull origin master git pull
echo echo
} }
@@ -57,9 +57,9 @@ function _send {
git commit -m "$msg" git commit -m "$msg"
echo echo
echo -e "\e[0;33m> git push origin master\e[0m" echo -e "\e[0;33m> git push\e[0m"
echo echo
git push origin master git push
echo echo
} }