git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] bisect: cleanup formatting of git-bisect.sh
@ 2011-08-05 11:31 Jon Seymour
  2011-08-05 11:31 ` [PATCH 1/2] bisect: cleanup whitespace errors in git-bisect.sh Jon Seymour
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jon Seymour @ 2011-08-05 11:31 UTC (permalink / raw)
  To: git; +Cc: gitster, Jon Seymour

This series is intended to be applied on top js/bisect-no-checkout.

The first patch ensures all leading whitespace is encoded with tabs, where possible.

The second patch replaces constructs of the form:

	if cond-statement; then
		then-statement
	fi

with:

	if cond-statement
	then
		then-statement
	fi	
	

Jon Seymour (2):
  bisect: cleanup whitespace errors in git-bisect.sh.
  bisect: replace "; then" with "\n<tab>*then"

 git-bisect.sh |  283 +++++++++++++++++++++++++++++----------------------------
 1 files changed, 146 insertions(+), 137 deletions(-)

-- 
1.7.6.354.g7f57d

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-08-06  3:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-05 11:31 [PATCH 0/2] bisect: cleanup formatting of git-bisect.sh Jon Seymour
2011-08-05 11:31 ` [PATCH 1/2] bisect: cleanup whitespace errors in git-bisect.sh Jon Seymour
2011-08-05 11:31 ` [PATCH 2/2] bisect: replace "; then" with "\n<tab>*then" Jon Seymour
2011-08-05 17:09 ` [PATCH 0/2] bisect: cleanup formatting of git-bisect.sh Junio C Hamano
2011-08-06  3:40   ` Jon Seymour

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).