From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.176.0/21 X-Spam-Status: No, score=-3.4 required=3.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,MSGID_FROM_MTA_HEADER,RP_MATCHES_RCVD shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 From: pclouds@gmail.com Subject: [PATCH 3/3] Group common commands into for groups for easier navigation Date: Fri, 1 Dec 2006 22:08:31 +0700 Message-ID: <11649857351377-git-send-email-pclouds@gmail.com> References: <1164985711791-git-send-email-pclouds@gmail.com> <11649857203869-git-send-email-pclouds@gmail.com> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE NNTP-Posting-Date: Fri, 1 Dec 2006 15:09:39 +0000 (UTC) Cc: =?utf-8?q?Nguy=E1=BB=85n_Th=C3=A1i_Ng=E1=BB=8Dc_Duy?= Return-path: Envelope-to: gcvg-git@gmane.org X-Warning: Original message contained 8-bit characters, however during the SMTP transport session the receiving system did not announce capability of receiving 8-bit SMTP (RFC 1651-1653), and as this message does not have MIME headers (RFC 2045-2049) to enable encoding change, we had very little choice. X-Warning: We ASSUME it is less harmful to add the MIME headers, and convert the text to Quoted-Printable, than not to do so, and to strip the message to 7-bits.. (RFC 1428 Appendix A) X-Warning: We don't know what character set the user used, thus we had to write these MIME-headers with our local system default value. DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:to:cc:subject:date:message-id:x-mailer:in-reply-to:references:content-type:content-transfer-encoding:from; b=eHxpbRD1COXOZ5WLRlN+rKLr1ZMLZhspk4ay3Nx6+oyZg0DUcff13IfJP/mjzKoh7rKXmQa2iXMa8i7IDKN7Gs3sxdEDENwOol7YJe8oUL1Ymj0sWbRIKgF8FZs08k1hn/QOxq092aelcWvJvEif0fwfRRctYlATkpnUz9pOccQ= X-Mailer: git-send-email 1.4.3.3.g7854-dirty In-Reply-To: <11649857203869-git-send-email-pclouds@gmail.com> Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: Received: from vger.kernel.org ([209.132.176.167]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GqA0m-0005uC-1u for gcvg-git@gmane.org; Fri, 01 Dec 2006 16:09:16 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933718AbWLAPJI (ORCPT ); Fri, 1 Dec 2006 10:09:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933843AbWLAPJI (ORCPT ); Fri, 1 Dec 2006 10:09:08 -0500 Received: from nz-out-0506.google.com ([64.233.162.230]:23275 "EHLO nz-out-0102.google.com") by vger.kernel.org with ESMTP id S933718AbWLAPJH (ORCPT ); Fri, 1 Dec 2006 10:09:07 -0500 Received: by nz-out-0102.google.com with SMTP id s1so1550824nze for ; Fri, 01 Dec 2006 07:09:06 -0800 (PST) Received: by 10.65.219.13 with SMTP id w13mr7016733qbq.1164985746536; Fri, 01 Dec 2006 07:09:06 -0800 (PST) Received: from localhost ( [125.234.253.165]) by mx.google.com with ESMTP id a29sm3204276qbd.2006.12.01.07.09.02; Fri, 01 Dec 2006 07:09:06 -0800 (PST) Received: by localhost (sSMTP sendmail emulation); Fri, 1 Dec 2006 22:08:55 +0700 To: git@vger.kernel.org Sender: git-owner@vger.kernel.org Repository/Branch level commands are grouped into group Repository =46ile manipulation commands are in group Manipulation Other status commands are in group Status The rest is in group Other Signed-off-by: Nguy=E1=BB=85n Th=C3=A1i Ng=E1=BB=8Dc Duy --- This is a suggestion. Someone may have better layout than me. generate-cmdlist.sh | 35 +++++++++++++++++++++-------------- 1 files changed, 21 insertions(+), 14 deletions(-) diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh index b45495d..f385854 100755 --- a/generate-cmdlist.sh +++ b/generate-cmdlist.sh @@ -10,33 +10,40 @@ struct cmdname_help struct cmdname_help common_cmds[] =3D {" =20 cat <<\EOF | -add -apply -archive -bisect +G:Repository +init-db branch -checkout -cherry-pick clone -commit -diff fetch -grep -init-db -log merge -mv prune pull push -rebase reset +tag + +G:Manipulation +add +apply +checkout +commit +mv revert rm + +G:Status +diff +log show show-branch status -tag + +G:Other +archive +bisect +cherry-pick +grep +rebase verify-tag EOF while read cmd --=20 1.4.4.rc1.g9124