From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2026 invoked by alias); 28 Jul 2013 16:23:33 -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: 31605 Received: (qmail 19682 invoked from network); 28 Jul 2013 16:23:15 -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=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.217.177 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references; bh=02xafls5FTkcAfg2EjzOOziOrwNSu+3SC9Q6R+aZvz0=; b=x89iUrTky+aFGsO+I12a+OhD9UGx1Vt0vtriJ8eiwX6zIrJKgmuGIDzYvxaUL9jBaC na7RDWdksYaDg9ivWe3iB6B6xq8XVxw0lLMj5gbpNq/nXuXpjMqhofwHIqlpuQXelEk1 WVkYaec0EbfkLdwj2DSY1qhlSteJLcyWtqfROGW5zxFVj/4fghv3FtfSOTBm1XdDQU07 lllKlBWuGhGYpqHwT3UvWcCgZ+DE6On5I6Z/sk9YuR/ZgwM/hgOUINALu7zXZVF1OvTl 6dXk8d4SjY95uotsWDx7kckyZh0TPuLjV53aiPRU5ASBdRkT4M0OnFoISUqdg+WIVh8V T69Q== X-Received: by 10.112.200.9 with SMTP id jo9mr24210470lbc.54.1375028589527; Sun, 28 Jul 2013 09:23:09 -0700 (PDT) From: =?UTF-8?q?=C3=98ystein=20Walle?= To: zsh-workers@zsh.org Cc: m0viefreak.cm@googlemail.com, =?UTF-8?q?=C3=98ystein=20Walle?= Subject: [PATCH 14/16] _git: move --(no-)follow to be log-specific option Date: Sun, 28 Jul 2013 18:22:11 +0200 Message-Id: <571699780045f1b9cf7b342c899db9eee17c8c92.1375006129.git.oystwa@gmail.com> X-Mailer: git-send-email 1.8.2.2 In-Reply-To: References: In-Reply-To: References: --- Completion/Unix/Command/_git | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 55054b0..9b15d57 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5856,6 +5856,8 @@ __git_setup_log_options () { '(- *)-h[display help]' '( --no-decorate)--decorate=-[print out ref names of any commits that are shown]: :__git_log_decorate_formats' '(--decorate )--no-decorate[do not print out ref names of any commits that are shown]' + '( --no-follow)--follow[follow renames]' + '(--follow )--no-follow[do not follow renames]' '--source[show which ref each commit is reached from]') } @@ -5926,8 +5928,6 @@ __git_setup_diff_options () { '(--ext-diff )--no-ext-diff[disallow external diff helper to be executed]' '(--textconv --no-textconv)--textconv[allow external text conversion filters to be run when comparing binary files]' '(--textconv --no-textconv)--no-textconv[do not allow external text conversion filters to be run when comparing binary files]' - '( --no-follow)--follow[follow renames]' - '(--follow )--no-follow[do not follow renames]' '--ignore-submodules[ignore changes to submodules]:: :__git_ignore_submodules_whens' '(--no-prefix)--src-prefix=[use given prefix for source]:prefix' '(--no-prefix)--dst-prefix=[use given prefix for destination]:prefix' -- 1.8.2.2