From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11526 invoked by alias); 19 Mar 2011 09:11:18 -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: 28920 Received: (qmail 9666 invoked from network); 19 Mar 2011 09:11:07 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.220.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=w9QqD+V5T3ABw6gMDlNhm73m0hldbvaG0gbrK0GayjU=; b=TwMoRa3OcG893tQYz2x5NwDqNLl0PuNc8uql6Pbz3mzVeyQREl1dsZqofyDKW8X/kL NJ8G70fTLILLRxcL+qI0RVzWPGuJLmnNTi5h+kSVim++x+QKbRBdcN5U9JO8DjEMJYu8 8SZSO4iw8iheeq6xQpfOHA2OCzxZRHXjwk1AE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=roUlpz0bnUbEzZ6mzz7/xU93oM6zjCJtgxhBfkCKPE5CZ47sMJFHQfzSSh5twz3+PW 1UdBf0OUwWeYT4UJK+NBUl2DzxBSg1htTO2B8PnLsEQ72frrEw7sioOPzl9uCoURYFfg TOzZlJhM5nt/SyBHZs2T5+eSA1dPAs8lvD/QI= MIME-Version: 1.0 Sender: nikolai.weibull@gmail.com In-Reply-To: <87y64cgj4r.fsf@ft.bewatermyfriend.org> References: <1300484112-9392-1-git-send-email-now@bitwi.se> <1300484112-9392-4-git-send-email-now@bitwi.se> <87y64cgj4r.fsf@ft.bewatermyfriend.org> Date: Sat, 19 Mar 2011 10:10:59 +0100 X-Google-Sender-Auth: BI5hYCpyOxEVx1pZnXLyizAn6PM Message-ID: Subject: Re: [PATCH 3/4] Fix git-branch -[dD] -r completion From: Nikolai Weibull To: Frank Terbeck Cc: zsh-workers@zsh.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Fri, Mar 18, 2011 at 23:26, Frank Terbeck wrote= : > Hm, with this patch, this: > > % git branch -d -r > > works. But this: > > % git -r -d > > doesn't. > > I suppose, that's not intentional? Well, it depends on what you=E2=80=99re after. Writing -r first hints that you want to list branches, not delete them. If you look at the synopsis in the man page, that=E2=80=99s how I=E2=80=99ve done it. Does an= yone have a strong opinion on how this should be done?