1. 11 7月, 2017 16 次提交
  2. 28 6月, 2017 4 次提交
  3. 27 6月, 2017 1 次提交
  4. 26 6月, 2017 3 次提交
  5. 25 6月, 2017 14 次提交
  6. 24 6月, 2017 1 次提交
    • J
      t3420: fix under GETTEXT_POISON build · adf16c08
      Junio C Hamano 提交于
      Newly added tests to t3420 in this series prepare expected
      human-readable output from "git rebase -i" and then compare the
      actual output with it.  As the output from the command is designed
      to go through i18n/l10n, we need to use test_i18ncmp to tell
      GETTEXT_POISON build that it is OK the output does not match.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      adf16c08
  7. 22 6月, 2017 1 次提交
    • J
      add--interactive: quote commentChar regex · d85d7ecb
      Jeff King 提交于
      Since c9d96164 (i18n: add--interactive: mark
      edit_hunk_manually message for translation, 2016-12-14),
      when the user asks to edit a hunk manually, we respect
      core.commentChar in generating the edit instructions.
      However, when we then strip out comment lines, we use a
      simple regex like:
      
        /^$commentChar/
      
      If your chosen comment character is a regex metacharacter,
      then that will behave in a confusing manner ("$", for
      instance, would only eliminate blank lines, not actual
      comment lines).
      
      We can fix that by telling perl not to respect
      metacharacters.
      Reported-by: NChristian Rösch <christian@croesch.de>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d85d7ecb