[PATCH 000/144] Use the $( ... ) construct for command substitution instead of using the back-quotes

2014-03-25 Thread Elia Pinto
This patch series changes everywhere the back-quotes construct for command substitution with the $( ... ). The Git CodingGuidelines prefer the $( ... ) construct for command substitution instead of using the back-quotes , or grave accents (`..`). The backquoted form is the historical method

Re: [PATCH 000/144] Use the $( ... ) construct for command substitution instead of using the back-quotes

2014-03-25 Thread Junio C Hamano
Elia Pinto gitter.spi...@gmail.com writes: The patch is simple but involves a large number of files with different authors. Being simple I think it is wasteful to cc a large number of different people for doing a review. We'd somehow need a way to parallelize the reviews, though. Being

[PATCH 000/144] Use the $( ... ) construct for command substitution instead of using the back-quotes

2014-03-24 Thread Elia Pinto
This patch series changes everywhere the back-quotes construct for command substitution with the $( ... ). The Git CodingGuidelines prefer the $( ... ) construct for command substitution instead of using the back-quotes , or grave accents (`..`). The backquoted form is the historical method