Re: [PATCH 01/14] t0001-init.sh: use the $( ... ) construct for command substitution

2014-04-28 Thread Matthieu Moy
Patches 1 to 14/14 are Reviewed-by: Matthieu Moy (in mailer and then log -p --color-words) -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vge

[PATCH 01/14] t0001-init.sh: use the $( ... ) construct for command substitution

2014-04-28 Thread Elia Pinto
The Git CodingGuidelines prefer the $(...) construct for command substitution instead of using the backquotes `...`. The backquoted form is the traditional method for command substitution, and is supported by POSIX. However, all but the simplest uses become complicated quickly. In particular, em