aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/git.fish
diff options
context:
space:
mode:
authorGravatar mr.Shu <mr@shu.io>2015-11-28 03:24:59 +0100
committerGravatar mr.Shu <mr@shu.io>2015-11-28 03:24:59 +0100
commit7b3d93f4a14910bd22a6d083cdfd1b7c327fff56 (patch)
tree029636cc568d8a51de294962dbcaa684fcf6b961 /share/completions/git.fish
parente5bfdcd9a47ed6e933f13944ae389c2add81fdf3 (diff)
git: Add missing remote subcommands completion
* Add completion for missing `git remote` subcommands. * Should fix #2567 Signed-off-by: mr.Shu <mr@shu.io>
Diffstat (limited to 'share/completions/git.fish')
-rw-r--r--share/completions/git.fish4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/completions/git.fish b/share/completions/git.fish
index 14a77889..ffa5f948 100644
--- a/share/completions/git.fish
+++ b/share/completions/git.fish
@@ -199,6 +199,10 @@ complete -f -c git -n '__fish_git_using_command remote' -a rm -d 'Removes a remo
complete -f -c git -n '__fish_git_using_command remote' -a show -d 'Shows a remote'
complete -f -c git -n '__fish_git_using_command remote' -a prune -d 'Deletes all stale tracking branches'
complete -f -c git -n '__fish_git_using_command remote' -a update -d 'Fetches updates'
+complete -f -c git -n '__fish_git_using_command remote' -a rename -d 'Renames a remote'
+complete -f -c git -n '__fish_git_using_command remote' -a set-head -d 'Sets the default branch for a remote'
+complete -f -c git -n '__fish_git_using_command remote' -a set-url -d 'Changes URLs for a remote'
+complete -f -c git -n '__fish_git_using_command remote' -a set-branches -d 'Changes the list of branches tracked by a remote'
# TODO options
### show