From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ted Pavlic Subject: [PATCH 2/2] completion: Get rid of tabbed indentation in comments. Replace with spaces. Date: Fri, 6 Feb 2009 11:05:38 -0500 Message-ID: <1233936338-10679-2-git-send-email-ted@tedpavlic.com> References: <20090206155823.GO26880@spearce.org> <1233936338-10679-1-git-send-email-ted@tedpavlic.com> Cc: git@vger.kernel.org, gitster@pobox.com, Ted Pavlic To: spearce@spearce.org X-From: git-owner@vger.kernel.org Fri Feb 06 17:07:52 2009 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1LVTEc-0003ig-Kr for gcvg-git-2@gmane.org; Fri, 06 Feb 2009 17:07:19 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753458AbZBFQFw (ORCPT ); Fri, 6 Feb 2009 11:05:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752853AbZBFQFv (ORCPT ); Fri, 6 Feb 2009 11:05:51 -0500 Received: from gallifrey.ece.ohio-state.edu ([164.107.167.66]:41523 "EHLO gallifrey.ece.ohio-state.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752150AbZBFQFu (ORCPT ); Fri, 6 Feb 2009 11:05:50 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by gallifrey.ece.ohio-state.edu (Postfix) with ESMTP id 0EBB380D8063; Fri, 6 Feb 2009 10:59:27 -0500 (EST) X-Virus-Scanned: amavisd-new at gallifrey.ece.ohio-state.edu Received: from gallifrey.ece.ohio-state.edu ([127.0.0.1]) by localhost (gallifrey.ece.ohio-state.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DwOTUgqsag+a; Fri, 6 Feb 2009 10:59:26 -0500 (EST) Received: from localhost.localdomain (tedpc.ece.ohio-state.edu [164.107.164.122]) by gallifrey.ece.ohio-state.edu (Postfix) with ESMTP id EC22D80D8066; Fri, 6 Feb 2009 10:59:26 -0500 (EST) X-Mailer: git-send-email 1.6.1.2.390.gba743 In-Reply-To: <1233936338-10679-1-git-send-email-ted@tedpavlic.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Signed-off-by: Ted Pavlic Acked-by: Shawn O. Pearce --- contrib/completion/git-completion.bash | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 6e04985..f44f63c 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -34,11 +34,11 @@ # are currently in a git repository. The %s token will be # the name of the current branch. # -# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty -# value, unstaged (*) and staged (+) changes will be shown next -# to the branch name. You can configure this per-repository -# with the bash.showDirtyState variable, which defaults to true -# once GIT_PS1_SHOWDIRTYSTATE is enabled. +# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty +# value, unstaged (*) and staged (+) changes will be shown next +# to the branch name. You can configure this per-repository +# with the bash.showDirtyState variable, which defaults to true +# once GIT_PS1_SHOWDIRTYSTATE is enabled. # # To submit patches: # -- 1.6.1.2.390.gba743