Thread (13 messages) flat view 13 messages, 4 authors, 2016-06-15

Re: [PATCH 1/3 v4] diff --stat: use the full terminal width

From: Johannes Sixt <hidden>
Date: 2016-06-15 22:53:05

Possibly related (same subject, not in this thread)

Am 2/15/2012 0:45, schrieb Zbigniew Jędrzejewski-Szmek:
+test_expect_success 'preparation' '
+	> abcd &&
+	git add abcd &&
+	git commit -m message &&
+	seq 1000 > abcd &&
+	git commit -m message abcd
Please don't use seq (here and in some more places in this series); we
don't have it on Windows. You can write it explicitly:

	i=0 &&
	while test $i -lt 1000
	do
		i=$(($i + 1))
		echo $i &&
	done >abcd &&
	...

-- Hannes
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help