summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2012-11-05 13:50:48 -0500
committerMike Gilbert <floppym@gentoo.org>2012-11-05 13:50:48 -0500
commita309177bb2da96c688049a40086f7663652e2e1a (patch)
tree7becfe379d172a238e213995f65fc1493ef7857e /scripts
parentAutomatic update to categories (diff)
downloadsunrise-a309177bb2da96c688049a40086f7663652e2e1a.tar.gz
sunrise-a309177bb2da96c688049a40086f7663652e2e1a.tar.bz2
sunrise-a309177bb2da96c688049a40086f7663652e2e1a.zip
scripts/review: Use explicit refspec when pushing
This avoids triggering push.default behavoir, which produces an ugly warning message in the current version of git.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/review8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/review b/scripts/review
index 54f40005e..a716464b1 100755
--- a/scripts/review
+++ b/scripts/review
@@ -143,10 +143,10 @@ fi
ebegin "Pushing changes..."
if [[ "$opt_verbose" == "1" ]] ; then
- git push -v origin
- git push -v reviewed
+ git push -v origin master
+ git push -v reviewed master
else
- git push origin
- git push reviewed
+ git push origin master
+ git push reviewed master
fi
eend ${?}