[PATCH] Makefile: add cppcheck target

2014-01-29 Thread Elia Pinto
Add cppcheck target to Makefile. Cppcheck is a static analysis tool for C/C++ code. Cppcheck primarily detects the types of bugs that the compilers normally do not detect. It is an useful target for doing QA analysis. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- Makefile |6

[PATCH] archive.c: reduce scope of variables

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- archive.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive.c b/archive.c index 346f3b2..49b79f8 100644 --- a/archive.c +++ b/archive.c @@ -112,7 +112,6 @@ static int write_archive_entry(const unsigned char

[PATCH] bisect.c: reduce scope of variable

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- bisect.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bisect.c b/bisect.c index 37200b4..8448d27 100644 --- a/bisect.c +++ b/bisect.c @@ -685,7 +685,6 @@ static void mark_expected_rev(char *bisect_rev_hex) static

[PATCH 2/2] builtin/apply.c: reduce scope of variables

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/apply.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/builtin/apply.c b/builtin/apply.c index b0d0986..a7e72d5 100644 --- a/builtin/apply.c +++ b/builtin/apply.c @@ -1943,13 +1943,7 @@ static int

[PATCH 3/3] builtin/blame.c: reduce scope of variables

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/blame.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/blame.c b/builtin/blame.c index e44a6bb..967a7c6 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -1580,14 +1580,14 @@ static const char

[PATCH 4/4] builtin/clean.c: reduce scope of variable

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/clean.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builtin/clean.c b/builtin/clean.c index 2f26297..a1f8969 100644 --- a/builtin/clean.c +++ b/builtin/clean.c @@ -154,7 +154,7 @@ static int remove_dirs

[PATCH 5/5] builtin/commit.c: reduce scope of variables

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/commit.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/builtin/commit.c b/builtin/commit.c index 3767478..eea4421 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -307,7 +307,6 @@ static char

[PATCH 6/6] builtin/fetch.c: reduce scope of variable

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/fetch.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/fetch.c b/builtin/fetch.c index 025bc3e..55f457c 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -1026,7 +1026,6 @@ static int fetch_multiple

[PATCH 7/7] builtin/gc.c: reduce scope of variables

2014-01-29 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- builtin/gc.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/builtin/gc.c b/builtin/gc.c index c19545d..5bbb5e3 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -188,13 +188,12 @@ static int need_to_gc(void) static

[PATCH 5/5] builtin/commit.c: reduce scope of variables

2014-01-30 Thread Elia Pinto
Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- This a reroll of a previous patch. Corrected the declaration after statement issue. builtin/commit.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/builtin/commit.c b/builtin/commit.c index 3767478..a684296

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

2014-03-24 Thread Elia Pinto
it is wasteful to cc a large number of different people for doing a review. Elia Pinto (144): check-builtins.sh: use the $( ... ) construct for command substitution git-am.sh: use the $( ... ) construct for command substitution git-pull.sh: use the $( ... ) construct for command substitution

[PATCH 007/144] git-web--browse.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- git-web--browse.sh |6

[PATCH 013/144] t0026-eol-config.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t0026-eol-config.sh | 20

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

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t0001-init.sh | 12

[PATCH 008/144] unimplemented.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- unimplemented.sh |2 +- 1

[PATCH 001/144] check-builtins.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- check-builtins.sh |4 ++-- 1

[PATCH 012/144] t0025-crlf-auto.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t0025-crlf-auto.sh | 38

[PATCH 053/144] t5100-mailinfo.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5100-mailinfo.sh | 12

[PATCH 049/144] t4119-apply-config.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4119-apply-config.sh |2

[PATCH 018/144] t1001-read-tree-m-2way.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1001-read-tree-m-2way.sh

[PATCH 095/144] t7602-merge-octopus-many.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7602-merge-octopus-many.sh

[PATCH 030/144] t3030-merge-recursive.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3030-merge-recursive.sh

[PATCH 072/144] t5550-http-fetch-dumb.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5550-http-fetch-dumb.sh

[PATCH 048/144] t4116-apply-reverse.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4116-apply-reverse.sh | 12

[PATCH 090/144] t7103-reset-bare.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7103-reset-bare.sh |2

[PATCH 093/144] t7504-commit-msg-hook.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7504-commit-msg-hook.sh

[PATCH 097/144] t8003-blame-corner-cases.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t8003-blame-corner-cases.sh

[PATCH 040/144] t4006-diff-mode.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4006-diff-mode.sh |2

[PATCH 075/144] t5601-clone.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5601-clone.sh |2 +- 1

[PATCH 058/144] t5304-prune.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5304-prune.sh |2 +- 1

[PATCH 015/144] t0204-gettext-reencode-sanity.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t0204-gettext-reencode

[PATCH 038/144] t3905-stash-include-untracked.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3905-stash-include

[PATCH 041/144] t4010-diff-pathspec.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4010-diff-pathspec.sh |4

[PATCH 056/144] t5302-pack-index.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5302-pack-index.sh | 34

[PATCH 099/144] t9101-git-svn-props.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9101-git-svn-props.sh | 30

[PATCH 079/144] t6001-rev-list-graft.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6001-rev-list-graft.sh | 12

[PATCH 084/144] t6111-rev-list-treesame.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6111-rev-list-treesame.sh

[PATCH 034/144] t3403-rebase-skip.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3403-rebase-skip.sh |2

[PATCH 064/144] t5515-fetch-merge-logic.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5515-fetch-merge-logic.sh

[PATCH 085/144] t6132-pathspec-exclude.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6132-pathspec-exclude.sh

[PATCH 074/144] t5570-git-daemon.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5570-git-daemon.sh |8

[PATCH 104/144] t9109-git-svn-multi-glob.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9109-git-svn-multi-glob.sh

[PATCH 096/144] t7700-repack.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7700-repack.sh |4 ++-- 1

[PATCH 103/144] t9108-git-svn-glob.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9108-git-svn-glob.sh | 20

[PATCH 088/144] t7004-tag.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7004-tag.sh | 16

[PATCH 094/144] t7505-prepare-commit-msg-hook.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7505-prepare-commit-msg

[PATCH 076/144] t5700-clone-reference.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5700-clone-reference.sh

[PATCH 082/144] t6032-merge-large-rename.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6032-merge-large-rename.sh

[PATCH 086/144] t7001-mv.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7001-mv.sh |4 ++-- 1

[PATCH 098/144] t9001-send-email.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9001-send-email.sh | 10

[PATCH 101/144] t9105-git-svn-commit-diff.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9105-git-svn-commit-diff.sh

[PATCH 083/144] t6034-merge-rename-nocruft.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6034-merge-rename-nocruft.sh

[PATCH 080/144] t6002-rev-list-bisect.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6002-rev-list-bisect.sh

[PATCH 081/144] t6015-rev-list-show-all-parents.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t6015-rev-list-show-all

[PATCH 071/144] t5538-push-shallow.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5538-push-shallow.sh |4

[PATCH 092/144] t7408-submodule-reference.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7408-submodule-reference.sh

[PATCH 070/144] t5537-fetch-shallow.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5537-fetch-shallow.sh |4

[PATCH 087/144] t7003-filter-branch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7003-filter-branch.sh |6

[PATCH 089/144] t7006-pager.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t7006-pager.sh |2 +- 1

[PATCH 105/144] t9110-git-svn-use-svm-props.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9110-git-svn-use-svm-props.sh

[PATCH 100/144] t9104-git-svn-follow-parent.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t9104-git-svn-follow-parent.sh

[PATCH 067/144] t5520-pull.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5520-pull.sh | 10

[PATCH 055/144] t5301-sliding-window.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5301-sliding-window.sh | 14

[PATCH 060/144] t5500-fetch-pack.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5500-fetch-pack.sh | 16

[PATCH 068/144] t5522-pull-symlink.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5522-pull-symlink.sh |2

[PATCH 077/144] t5710-info-alternate.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5710-info-alternate.sh |2

[PATCH 061/144] t5505-remote.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5505-remote.sh |2 +- 1

[PATCH 057/144] t5303-pack-corruption-resilience.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5303-pack-corruption

[PATCH 062/144] t5506-remote-groups.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5506-remote-groups.sh |2

[PATCH 066/144] t5517-push-mirror.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5517-push-mirror.sh |2

[PATCH 059/144] t5305-include-tag.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5305-include-tag.sh |8

[PATCH 073/144] t5551-http-fetch-smart.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5551-http-fetch-smart.sh

[PATCH 054/144] t5300-pack-object.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5300-pack-object.sh | 18

[PATCH 065/144] t5516-fetch-push.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5516-fetch-push.sh |4

[PATCH 063/144] t5510-fetch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5510-fetch.sh | 10

[PATCH 078/144] t5900-repo-selection.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5900-repo-selection.sh |2

[PATCH 025/144] t1401-symbolic-ref.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1401-symbolic-ref.sh |2

[PATCH 042/144] t4012-diff-binary.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4012-diff-binary.sh | 16

[PATCH 033/144] t3210-pack-refs.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3210-pack-refs.sh |2

[PATCH 021/144] t1004-read-tree-m-u-wf.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1004-read-tree-m-u-wf.sh

[PATCH 050/144] t4204-patch-id.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4204-patch-id.sh |4

[PATCH 031/144] t3100-ls-tree-restrict.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3100-ls-tree-restrict.sh

[PATCH 028/144] t1512-rev-parse-disambiguation.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1512-rev-parse

[PATCH 016/144] t0300-credentials.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t0300-credentials.sh |2

[PATCH 027/144] t1511-rev-parse-caret.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1511-rev-parse-caret.sh

[PATCH 032/144] t3101-ls-tree-dirname.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3101-ls-tree-dirname.sh

[PATCH 026/144] t1410-reflog.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1410-reflog.sh | 24

[PATCH 035/144] t3511-cherry-pick-x.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3511-cherry-pick-x.sh | 14

[PATCH 017/144] t1000-read-tree-m-3way.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1000-read-tree-m-3way.sh

[PATCH 020/144] t1003-read-tree-prefix.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t1003-read-tree-prefix.sh

[PATCH 046/144] t4038-diff-combined.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4038-diff-combined.sh |2

[PATCH 045/144] t4036-format-patch-signer-mime.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4036-format-patch-signer

[PATCH 052/144] t5003-archive-zip.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5003-archive-zip.sh |2

[PATCH 029/144] t2102-update-index-symlinks.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t2102-update-index-symlinks.sh

[PATCH 043/144] t4013-diff-various.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4013-diff-various.sh |6

[PATCH 047/144] t4057-diff-combined-paths.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4057-diff-combined-paths.sh

[PATCH 037/144] t3700-add.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3700-add.sh | 16

[PATCH 039/144] t3910-mac-os-precompose.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t3910-mac-os-precompose.sh

[PATCH 044/144] t4014-format-patch.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t4014-format-patch.sh | 10

[PATCH 051/144] t5000-tar-tree.sh: use the $( ... ) construct for command substitution

2014-03-25 Thread Elia Pinto
. 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. Signed-off-by: Elia Pinto gitter.spi...@gmail.com --- t/t5000-tar-tree.sh |6

  1   2   3   4   5   6   >