From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8469 invoked by alias); 4 Apr 2013 20:03:20 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31209 Received: (qmail 28594 invoked from network); 4 Apr 2013 20:03:18 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at bewatermyfriend.org does not designate permitted sender hosts) From: Frank Terbeck To: zsh-workers@zsh.org Subject: Re: Curious result from "git" completion In-Reply-To: <130404104417.ZM2767@torch.brasslantern.com> (Bart Schaefer's message of "Thu, 04 Apr 2013 10:44:17 -0700") References: <130404104417.ZM2767@torch.brasslantern.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) Date: Thu, 04 Apr 2013 21:57:24 +0200 Message-ID: <871uaqgjbv.fsf@ft.bewatermyfriend.org> MIME-Version: 1.0 Content-Type: text/plain X-Df-Sender: [pbs]MzQ5NTM4 Bart Schaefer wrote: [...] Can't look at the completion issue right now, but I see Nikolai has picked it up already. > I was attempting completion in hopes of answering the question, "What's the > simple git equivalent of 'cvs export'?" to which I still have no answer. This would be "git archive". The exact call depends on what you want to achieve. If you want an export to deploy something you can do it like this: git archive master --format=tar --prefix=zsh-export/ | tar xvf - Other possibilities depend on what you need. Regards, Frank -- In protocol design, perfection has been reached not when there is nothing left to add, but when there is nothing left to take away. -- RFC 1925