1. 10 10月, 2020 1 次提交
    • J
      Merge tag 'v2.29.0-rc1' of github.com:git/git · b4a48be1
      Jiang Xin 提交于
      Git 2.29-rc1
      
      * tag 'v2.29.0-rc1' of github.com:git/git:
        Git 2.29-rc1
        doc: fix the bnf like style of some commands
        doc: git-remote fix ups
        doc: use linkgit macro where needed.
        git-bisect-lk2009: make continuation of list indented
        ci: do not skip tagged revisions in GitHub workflows
        ci: skip GitHub workflow runs for already-tested commits/trees
        tests: avoid using the branch name `main`
        t1415: avoid using `main` as ref name
        Makefile: ASCII-sort += lists
        help: do not expect built-in commands to be hardlinked
        index-pack: make get_base_data() comment clearer
        index-pack: drop type_cas mutex
        index-pack: restore "resolving deltas" progress meter
        compat/mingw.h: drop extern from function declaration
        GitHub workflow: automatically follow minor updates of setup-msbuild
        t5534: split stdout and stderr redirection
      b4a48be1
  2. 09 10月, 2020 19 次提交
  3. 08 10月, 2020 9 次提交
  4. 07 10月, 2020 1 次提交
    • Đ
      t5534: split stdout and stderr redirection · 2cd6e1d5
      Đoàn Trần Công Danh 提交于
      On atomic pushing failure with GnuPG, we expect a very specific output
      in stdout due to `--porcelain` switch.
      
      On such failure, we also write down some helpful hint into stderr
      in order to help user understand what happens and how to continue from
      those failures.
      
      On a lot of system, those hint (in stderr) will be flushed first,
      then those messages in stdout will be flushed. In such systems, the
      current test code is fine as is.
      
      However, we don't have such guarantee, (at least) there're some real
      systems that writes those stream interleaved. On such systems, we may
      see the stderr stream written in the middle of stdout stream.
      
      Let's split those stream redirection. By splitting those stream,
      the output stream will contain exactly what we want to compare,
      thus, saving us a "sed" invocation.
      
      While we're at it, change the `test_i18ncmp` to `test_cmp` because we
      will never translate those messages (because of `--porcelain`).
      Signed-off-by: NĐoàn Trần Công Danh <congdanhqx@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2cd6e1d5
  5. 06 10月, 2020 10 次提交