Re: [PATCH] completion: git branch --set-upstream-to=

2012-09-12 Thread Michael J Gruber
Junio C Hamano venit, vidit, dixit 11.09.2012 19:13:
> Thanks; I picked up $gmane/204633 but forgot to queue.

I missed that one, thanks for reducing appropriately.

Michael
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] completion: git branch --set-upstream-to=

2012-09-11 Thread Junio C Hamano
Junio C Hamano  writes:

> Thanks; I picked up $gmane/204633 but forgot to queue.

... so this has been reduced to:

-- >8 --
From: Michael J Gruber 
Date: Tue, 11 Sep 2012 13:58:30 +0200
Subject: [PATCH] completion: complete branch name for "branch 
--set-upstream-to="

Signed-off-by: Michael J Gruber 
Signed-off-by: Junio C Hamano 
---
 contrib/completion/git-completion.bash | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/contrib/completion/git-completion.bash 
b/contrib/completion/git-completion.bash
index 4a4d30a..e48cf80 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -875,6 +875,9 @@ _git_branch ()
done
 
case "$cur" in
+   --set-upstream-to=*)
+   __gitcomp "$(__git_refs)" "" "${cur##--set-upstream-to=}"
+   ;;
--*)
__gitcomp "
--color --no-color --verbose --abbrev= --no-abbrev
-- 
1.7.12
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] completion: git branch --set-upstream-to=

2012-09-11 Thread Junio C Hamano
Thanks; I picked up $gmane/204633 but forgot to queue.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] completion: git branch --set-upstream-to=

2012-09-11 Thread Michael J Gruber
Remove the deprecated --set-upstream from completion suggestions and add
the new --set-upstream-to=, offering all refs for completion like in
similar cases.

Signed-off-by: Michael J Gruber 
---
 contrib/completion/git-completion.bash | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/contrib/completion/git-completion.bash 
b/contrib/completion/git-completion.bash
index 222b804..625d767 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -875,11 +875,14 @@ _git_branch ()
done
 
case "$cur" in
+   --set-upstream-to=*)
+   __gitcomp "$(__git_refs)" "" "${cur##--set-upstream-to=}"
+   ;;
--*)
__gitcomp "
--color --no-color --verbose --abbrev= --no-abbrev
--track --no-track --contains --merged --no-merged
-   --set-upstream --edit-description --list
+   --set-upstream-to= --edit-description --list
"
;;
*)
-- 
1.7.12.443.g84e0989

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html