aboutsummaryrefslogtreecommitdiff
path: root/commit
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-09-10 18:02:40 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-09-10 18:02:40 -0300
commit5ad8bc7f3e2a1d3c38b24035c8636103d34ec241 (patch)
treec026696a75f90037444c1fcabe09d157fe58a5fc /commit
parente4e6f27053dad4a629bd8de53a38315aba45450d (diff)
downloadutils-git-5ad8bc7f3e2a1d3c38b24035c8636103d34ec241.tar.gz
utils-git-5ad8bc7f3e2a1d3c38b24035c8636103d34ec241.tar.bz2
Do not complain if remote 'all' is not present
Diffstat (limited to 'commit')
-rwxr-xr-xcommit8
1 files changed, 4 insertions, 4 deletions
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
}