From: Junio C Hamano Date: Tue, 20 May 2014 18:12:02 +0000 (-0700) Subject: CodingGuidelines: avoid "test -a/-o " X-Git-Tag: v2.1.0-rc0~151^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/897f964c0dce8e7cc2cc53bb19b83cadce106773?hp=897f964c0dce8e7cc2cc53bb19b83cadce106773 CodingGuidelines: avoid "test -a/-o " The construct is error-prone; "test" being built-in in most modern shells, the reason to avoid "test && test " spawning one extra process by using a single "test -a " no longer exists. Signed-off-by: Junio C Hamano ---