1. 24 7月, 2011 8 次提交
  2. 29 5月, 2011 3 次提交
  3. 09 4月, 2011 1 次提交
  4. 09 3月, 2011 2 次提交
  5. 19 1月, 2011 2 次提交
  6. 14 12月, 2010 1 次提交
  7. 12 12月, 2010 4 次提交
  8. 30 5月, 2010 1 次提交
    • K
      gitk: Show notes by default (like git log does) · 7defefb1
      Kirill Smelkov 提交于
      Starting from ~ git-1.6.6, log, show & whatchanged show notes by default.
      
      On the other hand, gitk does not show notes by default, because under
      the hood it calls 'git log --pretty=raw ...' to get the log, and in
      'git log' notes are turned off when user specifies format or pretty
      settings.
      
      Yes, it is possible to invoke 'gitk --show-notes' explicitly, but since
      from user's perspective, gitk is gui enabled git log, it would be
      logical for gitk to show notes by default too for consistency.
      
      In git, --show-notes was introduced in 66b2ed (Fix "log" family not to
      be too agressive about showing notes) which predates 1.6.6.2.
      
      Notes can still be supressed with 'gitk --no-notes'.
      
      Cc: Michael J Gruber <git@drmicha.warpmail.net>
      Signed-off-by: NKirill Smelkov <kirr@mns.spb.ru>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      7defefb1
  9. 17 4月, 2010 1 次提交
  10. 20 3月, 2010 10 次提交
  11. 04 2月, 2010 1 次提交
  12. 29 1月, 2010 4 次提交
  13. 12 1月, 2010 2 次提交
    • M
      gitk: Adjust two equal strings which differed in whitespace · 0359ba72
      Markus Heidelberg 提交于
      There were the two strings "SHA1 ID: " and "SHA1 ID:" as description
      for the SHA1 search textbox.  Change it to two equal strings, the
      space is now outside of the translated string.
      
      Furthermore the German translation wasn't unique, but "SHA1:" resp.
      "SHA1-Hashwert:". The former was displayed after initialisation, the
      latter after changes to the textbox, for example when clearing the text.
      But it was too long to be displayed fully, so use a shorter translation.
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      0359ba72
    • K
      gitk: Display submodule diffs with appropriate encoding · 1f2cecfd
      Kirill Smelkov 提交于
      Previously, when submodule commit headings contained non-latin-1
      characters, they were displayed incorrectly in gitk, because $line was
      not properly decoded, for example:
      
      ----------------------------- Documentation/Dokko -----------------------------
      Submodule Documentation/Dokko 2ca20c7..0ea204d:
        > Протоколы сопряжения ИМС "Мостик-21631"  (ЛИ2 и Сандал)
        > hardware: документация на InnoDisk SATA 10000
        > hardware: документация на IEI PCISA-6770E2 v3.0
        > hardware: документация на Fastwel NIB941
        > hardware: документация на IEI IPX-9S
        > hardware: документация на Hirschmann 5TX-EEC
      
      instead of
      
      ----------------------------- Documentation/Dokko -----------------------------
      Submodule Documentation/Dokko 2ca20c7..0ea204d:
        > Протоколы сопряжения ИМС "Мостик-21631"  (ЛИ2 и Сандал)
        > hardware: документация на InnoDisk SATA 10000
        > hardware: документация на IEI PCISA-6770E2 v3.0
        > hardware: документация на Fastwel NIB941
        > hardware: документация на IEI IPX-9S
        > hardware: документация на Hirschmann 5TX-EEC
      
      This fixes it.
      Signed-off-by: NKirill Smelkov <kirr@landau.phys.spbu.ru>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      1f2cecfd