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 for command substitution, and is supported by POSIX. However, all but the simplest uses become complicated quickly. In particular, embedded command substitutions and/or the use of double quotes require careful escaping with the backslash character. Because of this the POSIX shell adopted the $(…) feature from the Korn shell. The patch was generated by the simple script for _f in $(find . -name "*.sh") do sed -i 's@`\(.*\)`@$(\1)@g' ${_f} done Signed-off-by: Elia Pinto <gitter.spi...@gmail.com> --- t/t5520-pull.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/t/t5520-pull.sh b/t/t5520-pull.sh index 227d293..a68c099 100755 --- a/t/t5520-pull.sh +++ b/t/t5520-pull.sh @@ -9,7 +9,7 @@ modify () { mv "$2.x" "$2" } -D=`pwd` +D=$(pwd) test_expect_success setup ' @@ -94,9 +94,9 @@ test_expect_success 'test . as a remote' ' echo updated >file && git commit -a -m updated && git checkout copy && - test `cat file` = file && + test $(cat file) = file && git pull && - test `cat file` = updated + test $(cat file) = updated ' test_expect_success 'the default remote . should not break explicit pull' ' @@ -105,9 +105,9 @@ test_expect_success 'the default remote . should not break explicit pull' ' git commit -a -m modified && git checkout copy && git reset --hard HEAD^ && - test `cat file` = file && + test $(cat file) = file && git pull . second && - test `cat file` = modified + test $(cat file) = modified ' test_expect_success '--rebase' ' -- 1.7.10.4 -- 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://vger.kernel.org/majordomo-info.html