From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21427 invoked from network); 29 Jan 2009 12:22:35 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 29 Jan 2009 12:22:35 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 68637 invoked from network); 29 Jan 2009 12:22:18 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 29 Jan 2009 12:22:18 -0000 Received: (qmail 9341 invoked by alias); 29 Jan 2009 12:21:59 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26469 Received: (qmail 9206 invoked from network); 29 Jan 2009 12:21:56 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 29 Jan 2009 12:21:56 -0000 Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147]) by bifrost.dotsrc.org (Postfix) with ESMTPS id 702638028ACA for ; Thu, 29 Jan 2009 13:21:54 +0100 (CET) Received: from ingmar by bach.exherbo.org with local (Exim 4.69) (envelope-from ) id 1LSVu3-0000L3-3z; Thu, 29 Jan 2009 12:21:51 +0000 From: Ingmar Vanhassel To: Zsh Hackers' List Cc: Ingmar Vanhassel Subject: [PATCH] Complete "git clone --verbose". Date: Thu, 29 Jan 2009 12:21:47 +0000 Message-Id: <1233231710-1204-6-git-send-email-ingmar@exherbo.org> X-Mailer: git-send-email 1.6.0.1 In-Reply-To: <1233231710-1204-5-git-send-email-ingmar@exherbo.org> References: <1233231710-1204-1-git-send-email-ingmar@exherbo.org> <1233231710-1204-2-git-send-email-ingmar@exherbo.org> <1233231710-1204-3-git-send-email-ingmar@exherbo.org> <1233231710-1204-4-git-send-email-ingmar@exherbo.org> <1233231710-1204-5-git-send-email-ingmar@exherbo.org> X-Virus-Scanned: ClamAV 0.92.1/8918/Thu Jan 29 12:42:19 2009 on bifrost X-Virus-Status: Clean --- Completion/Unix/Command/_git | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 209fb97..7649b21 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1620,10 +1620,11 @@ _git-clone () { _arguments -S \ '--bare[make a bare GIT repository]' \ '--mirror[clone refs into refs/* instead of refs/remotes/origin/*]' \ - '(-l --local)'{-l,--local}'[perform a local cloning of a repository]' \ + '(-l --local)'{-l,--local}'[clone locally, hardlink refs and objects if possible]' \ '(-s --shared)'{-s,--shared}'[share the objects with the source repository (warning: see man page)]' \ '--reference[reference repository]:repository:_directories' \ '(-q --quiet)'{-q,--quiet}'[operate quietly]' \ + '(-v --verbose)'{-v,--verbose}'[always display the progressbar]' \ '(-n --no-checkout)'{-n,--no-checkout}'[do not checkout HEAD after clone is complete]' \ '(-o --origin)'{-o,--origin}'[use given name instead of "origin" as branch name]:name:__git_guard_branch-name' \ '--no-hardlinks[copy files instead of hardlinking when doing a local clone]' \ -- 1.6.0.1