summaryrefslogtreecommitdiff
path: root/bin/git-push-all
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-15 11:35:13 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-15 11:35:13 -0700
commit0c51c811d252f2176cb359f7c55dd716bc520756 (patch)
tree76ab2faae971bcb90d9343b90bc1f4ee914f266a /bin/git-push-all
parent3c8370e94fce75145694d029ee58bc22277b2803 (diff)
downloaddotfiles-0c51c811d252f2176cb359f7c55dd716bc520756.tar.gz
git-push-all: don't die when we don't know where to push something
Diffstat (limited to 'bin/git-push-all')
-rwxr-xr-xbin/git-push-all3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/git-push-all b/bin/git-push-all
index 74a63c2c..ec7f7591 100755
--- a/bin/git-push-all
+++ b/bin/git-push-all
@@ -78,9 +78,8 @@ foreach my $branch (@local_branches) {
# say "I: pushing $short_branch to its tracking branch, $tracking";
push $pushes{$tracking_remote}->@*, $branch;
} else {
- say "E: couldn't find anywhere to push $branch";
+ say "W: couldn't find anywhere to push $branch";
say "I: maybe you want to \`git branchmove\` it to a remote\n";
- exit 1;
}
}