From 8ff8cdc54dce27580e96f617ccb9b7d4a1e983dd Mon Sep 17 00:00:00 2001 From: Motonori Iwata Date: Tue, 30 Aug 2011 13:58:10 +0900 Subject: [PATCH] fixed bug: set-upstream --- git-now-rebase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-now-rebase b/git-now-rebase index 4d09e01..2055332 100755 --- a/git-now-rebase +++ b/git-now-rebase @@ -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