fixed bug: set-upstream

This commit is contained in:
Motonori Iwata 2011-08-30 13:58:10 +09:00
parent 56d5ef7850
commit 8ff8cdc54d

View file

@ -59,7 +59,7 @@ _cmd_push() {
local branch=$1
local remote=$2
if [ -n "$remote" ]; then
echo "git push --set-upstream ${branch} ${remote}/${branch}"
echo "git push --set-upstream ${remote} ${branch}"
else
echo "git push"
fi