aboutsummaryrefslogtreecommitdiff
path: root/commit
diff options
context:
space:
mode:
Diffstat (limited to 'commit')
-rwxr-xr-xcommit4
1 files changed, 3 insertions, 1 deletions
diff --git a/commit b/commit
index 94eba0f..3a8e5d8 100755
--- a/commit
+++ b/commit
@@ -80,7 +80,9 @@ function git_push {
elif git remote | grep -q 'all'; then
git push all --all
elif git remote | grep -q 'origin'; then
- git push --all
+ echo "Please configure the 'all' repository first."
+ exit 1
+ #git push --all
fi
}