[PATCH] completion: git branch --set-upstream-to=
From: Michael J Gruber <hidden>
Date: 2016-06-15 22:54:43
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Michael J Gruber <hidden>
Date: 2016-06-15 22:54:43
Subsystem:
the rest · Maintainer:
Linus Torvalds
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 <redacted> --- 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