From: Silvio Rhatto Date: Sat, 10 Sep 2016 21:02:40 +0000 (-0300) Subject: Do not complain if remote 'all' is not present X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5ad8bc7f3e2a1d3c38b24035c8636103d34ec241;p=utils-git.git Do not complain if remote 'all' is not present --- diff --git a/commit b/commit index e5bed59..c5d3f4a 100755 --- a/commit +++ b/commit @@ -79,10 +79,10 @@ function git_push { return elif git remote | grep -q 'all'; then git push all --all - elif git remote | grep -q 'origin'; then - echo "Please configure the 'all' remote first." - exit 1 - #git push --all + #elif git remote | grep -q 'origin'; then + # echo "Please configure the 'all' remote first." + # exit 1 + # #git push --all fi }