From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3875 invoked by alias); 20 Oct 2013 17:45:31 -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: 31855 Received: (qmail 14503 invoked from network); 20 Oct 2013 17:45:19 -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 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=yN5pVm/u6Jp1WeeI1H/6YHbmZYxgtw0r2wtlcktoX/k=; b=Xu89vzh0KAdc6M2Ls2BT0ZbWalUoEcCW5Snx4ljTjBsZyAdOJzzHfAUD9LAPyN/KYM WuzbZ4XRnqcfcBDJK2sdpZs8OqO9c3T8r15ILpr+QoQUGzILvVlDeM2Rt4yZnD9DkeSP 8RYrcI/gJu5aI/IstlUeTWMILYeJcKXo20A2122H7kFeIOi6+yOdk75NxthGRmIVKm6e +HJZYsQ5OlUA/zO5EPqtivMd1QwHQLZqZvLikaOnoq3YQGvrCijWAAj8Yyz/1JsFZXfm tLvsade4xlGZaChy22WovhRDHx6v4FEBD8bsnMj3OZ6TSsBBK/qiQg2fUFLrb+4i08Xi OqEg== X-Received: by 10.112.13.72 with SMTP id f8mr317488lbc.40.1382291116608; Sun, 20 Oct 2013 10:45:16 -0700 (PDT) From: =?UTF-8?q?=C3=98ystein=20Walle?= To: zsh-workers@zsh.org Cc: m0viefreak Subject: [PATCH 7/7] _git: revert: add '-e,--edit' Date: Sun, 20 Oct 2013 19:41:05 +0200 Message-Id: <2c9605863e3ea3902a29245b62960376b932b882.1382290245.git.oystwa@gmail.com> X-Mailer: git-send-email 1.8.4.1.516.g1d25dd4 In-Reply-To: References: In-Reply-To: References: From: m0viefreak --- Completion/Unix/Command/_git | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 6f631bc..db1ff2f 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1320,8 +1320,9 @@ _git-revert () { '(- :)--quit[end revert or cherry-pick sequence]' \ '(- :)--continue[resume revert or cherry-pick sequence]' \ '(- :)--abort[cancel revert or cherry-pick sequence]' \ + '(-e --edit --no-edit)'{-e,--edit}'[edit the commit before committing the revert]' \ + '(-e --edit --no-edit)--no-edit[do not edit the commit message before committing the revert]' \ '(-m --mainline)'{-m+,--mainline=}'[pick which parent is mainline]:parent number' \ - '(-e --edit)--no-edit[do not edit the commit message]' \ '(-n --no-commit)'{-n,--no-commit}'[do not commit the reversion]' \ '(-s --signoff)'{-s,--signoff}'[add Signed-off-by line at the end of the commit message]' \ ': :__git_commits' -- 1.8.4.1.516.g1d25dd4