From 4491588ac04669c103790c557c6eb4aa40ec0f9e Mon Sep 17 00:00:00 2001 From: Turiok Date: Tue, 28 Dec 2021 20:58:50 +0100 Subject: [PATCH] feat(repo): add command completion for repo 2.8 (#9388) --- plugins/repo/_repo | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/repo/_repo b/plugins/repo/_repo index db0ecd14d..2b1f165f1 100644 --- a/plugins/repo/_repo +++ b/plugins/repo/_repo @@ -114,7 +114,9 @@ _repo() (start) _arguments : \ "(-h --help)"{-h,--help}"[Show help]" \ - "(--all)--all=[begin branch in all projects]"\ + "(--all)--all[begin branch in all projects]"\ + "(-r --rev --revision)"{-r,--rev,--revision=}"[point branch at this revision instead of upstream]":branch_or_rev:__repo__repo_branch_or_rev\ + "(--head)--head[abbreviation for --rev HEAD]"\ ':branch name:__repo_new__repo_branch_name' \ ':projects:__repo_projects_or_all' \ && ret=0 @@ -143,6 +145,13 @@ _repo() "(-h --help)"{-h,--help}"[Show help]" \ && ret=0 ;; + (stage) + _arguments : \ + "(-h --help)"{-h,--help}"[Show help]" \ + "(-i --interactive)"{-i,--interactive}"[use interactive staging]" \ + ':projects:__repo_projects' \ + && ret=0 + ;; (status) _arguments : \ "(-h --help)"{-h,--help}"[Show help]" \