1. 27 5月, 2016 12 次提交
  2. 19 5月, 2016 23 次提交
  3. 13 5月, 2016 1 次提交
  4. 12 5月, 2016 2 次提交
  5. 10 5月, 2016 2 次提交
    • J
      test-lib-functions.sh: rewrite test_seq without Perl · 4df43135
      Junio C Hamano 提交于
      Rewrite the 'seq' imitation using only commands and features that
      are typically found built into modern POSIX shells, instead of
      relying on Perl to run a single-liner script.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4df43135
    • A
      t4151: make sure argument to 'test -z' is given · 2bb05186
      Armin Kunaschik 提交于
      88d50724 (am --skip: revert changes introduced by failed 3way merge,
      2015-06-06), unlike all the other patches in the series, forgot to
      quote the output from "$(git ls-files -u)" when using it as the
      argument to "test -z", leading to a syntax error on platforms whose
      test does not interpret "test -z" (no other arguments) as testing if
      a string "-z" is the null string (which GNU test and test that is
      built into bash and dash seem to do).
      
      Note that $(git ls-files -u | wc -l) is deliberately left unquoted,
      as some implementations of "wc -l" includes extra blank characters
      in its output and cannot be compared as string, i.e. "test 0 = $(...)".
      Signed-off-by: NArmin Kunaschik <megabreit@googlemail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2bb05186