From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Bracey Subject: [PATCH] git.c: rearrange git synopsis to fit in 80 columns Date: Mon, 11 Mar 2013 22:44:10 +0200 Message-ID: <1363034650-14984-1-git-send-email-kevin@bracey.fi> References: <1363031055-13562-1-git-send-email-kevin@bracey.fi> Cc: Kevin Bracey To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Mon Mar 11 21:44:43 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UF9aM-000430-Ii for gcvg-git-2@plane.gmane.org; Mon, 11 Mar 2013 21:44:42 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754043Ab3CKUoQ (ORCPT ); Mon, 11 Mar 2013 16:44:16 -0400 Received: from 14.mo1.mail-out.ovh.net ([178.32.97.215]:35134 "EHLO mo1.mail-out.ovh.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752994Ab3CKUoQ (ORCPT ); Mon, 11 Mar 2013 16:44:16 -0400 X-Greylist: delayed 4560 seconds by postgrey-1.27 at vger.kernel.org; Mon, 11 Mar 2013 16:44:15 EDT Received: from mail420.ha.ovh.net (b6.ovh.net [213.186.33.56]) by mo1.mail-out.ovh.net (Postfix) with SMTP id 759BBFF90CA for ; Mon, 11 Mar 2013 22:00:53 +0100 (CET) Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 11 Mar 2013 22:44:13 +0200 Received: from 85-23-153-122.bb.dnainternet.fi (HELO asus-i7-debian.bracey.fi) (kevin@bracey.fi@85.23.153.122) by ns0.ovh.net with SMTP; 11 Mar 2013 22:44:11 +0200 X-Ovh-Mailout: 178.32.228.1 (mo1.mail-out.ovh.net) X-Mailer: git-send-email 1.8.2.rc3.7.g1100d09.dirty In-Reply-To: <1363031055-13562-1-git-send-email-kevin@bracey.fi> X-Ovh-Tracer-Id: 4763401032925417694 X-Ovh-Remote: 85.23.153.122 (85-23-153-122.bb.dnainternet.fi) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-OVH-SPAMSTATE: OK X-OVH-SPAMSCORE: 52 X-OVH-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeeiuddrfeejucetufdoteggodetrfcurfhrohhfihhlvgemucfqggfjnecuuegrihhlohhuthemuceftddtnecuudcurhgrnhguohhmuchsthhrihhnghdlshdmucdlhedvmd X-Spam-Check: DONE|U 0.500001/N X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 52 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeeiuddrfeejucetufdoteggodetrfcurfhrohhfihhlvgemucfqggfjnecuuegrihhlohhuthemuceftddtnecuudcurhgrnhguohhmuchsthhrihhnghdlshdmucdlhedvmd Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Make the command line use the narrower synopsis layout that the man page has used since commit 68e4b55. Signed-off-by: Kevin Bracey --- git.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git.c b/git.c index d33f9b3..2a98624 100644 --- a/git.c +++ b/git.c @@ -6,10 +6,10 @@ #include "run-command.h" const char git_usage_string[] = - "git [--version] [--exec-path[=]] [--html-path] [--man-path] [--info-path]\n" + "git [--version] [--help] [-c name=value]\n" + " [--exec-path[=]] [--html-path] [--man-path] [--info-path]\n" " [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]\n" " [--git-dir=] [--work-tree=] [--namespace=]\n" - " [-c name=value] [--help]\n" " []"; const char git_more_info_string[] = -- 1.8.2.rc3.7.g1100d09.dirty