1. 16 9月, 2010 1 次提交
    • J
      Merge git://repo.or.cz/git-gui · 12644fa9
      Junio C Hamano 提交于
      * 'master' of git://repo.or.cz/git-gui:
        git-gui 0.13
        git-gui: avoid mis-encoding the copyright message on Windows.
        git-gui: Update Swedish translation (521t).
        git-gui: ensure correct application termination in git-gui--askpass
        git-gui: handle textconv filter on Windows and in development
        git-gui: use shell to launch textconv filter in "blame"
        git-gui: display error launching blame as a message box.
        git-gui: Make usage statement visible on Windows.
      12644fa9
  2. 15 9月, 2010 1 次提交
  3. 14 9月, 2010 2 次提交
  4. 13 9月, 2010 3 次提交
    • J
      Merge branch 'maint' · 5879b6bb
      Junio C Hamano 提交于
      * maint:
        t3101: modernise style
        compat/nedmalloc: don't force NDEBUG on the rest of git
      
      Conflicts:
      	Makefile
      5879b6bb
    • J
      t3101: modernise style · e22148f4
      Junio C Hamano 提交于
      Also add a few " &&" cascade that were missing.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      e22148f4
    • R
      vcs-svn: Fix some printf format compiler warnings · 5418d96d
      Ramsay Jones 提交于
      In particular, on systems that define uint32_t as an unsigned long,
      gcc complains as follows:
      
            CC vcs-svn/fast_export.o
        vcs-svn/fast_export.c: In function `fast_export_modify':
        vcs-svn/fast_export.c:28: warning: unsigned int format, uint32_t arg (arg 2)
        vcs-svn/fast_export.c:28: warning: int format, uint32_t arg (arg 3)
        vcs-svn/fast_export.c: In function `fast_export_commit':
        vcs-svn/fast_export.c:42: warning: int format, uint32_t arg (arg 5)
        vcs-svn/fast_export.c:62: warning: int format, uint32_t arg (arg 2)
        vcs-svn/fast_export.c: In function `fast_export_blob':
        vcs-svn/fast_export.c:72: warning: int format, uint32_t arg (arg 2)
        vcs-svn/fast_export.c:72: warning: int format, uint32_t arg (arg 3)
            CC vcs-svn/svndump.o
        vcs-svn/svndump.c: In function `svndump_read':
        vcs-svn/svndump.c:260: warning: int format, uint32_t arg (arg 3)
      
      In order to suppress the warnings we use the C99 format specifier
      macros PRIo32 and PRIu32 from <inttypes.h>.
      Signed-off-by: NRamsay Jones <ramsay@ramsay1.demon.co.uk>
      Acked-by: NJonathan Nieder <jrnieder@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5418d96d
  5. 12 9月, 2010 1 次提交
  6. 11 9月, 2010 6 次提交
  7. 10 9月, 2010 9 次提交
  8. 09 9月, 2010 6 次提交
  9. 08 9月, 2010 2 次提交
    • J
      Merge branch 'en/d-f-conflict-fix' · 9f44723d
      Junio C Hamano 提交于
      * en/d-f-conflict-fix:
        fast-export: ensure that a renamed file is printed after all references
      9f44723d
    • J
      fast-export: ensure that a renamed file is printed after all references · 4ce6fb80
      Johannes Sixt 提交于
      t9350 sets up a commit where a file is both copied and renamed. The output
      of fast-export for this commit should look like this:
      
        author ...
        committer ...
        from :19
        C "file2" "file4"
        R "file2" "file5"
      
      The order of the two modification lines is derived from the result that
      the diff machinery produces.
      
      060df624 (fast-export: Fix output order of D/F changes) inserted a qsort
      call that modifies the order of the diff result. Unfortunately, qsort need
      not be stable. Therefore, it is possible that the 'R' line appears before
      the 'C' line and the resulting fast-import stream is incorrect.
      
      Fix it by forcing that the rename entry is printed after all other
      modification lines with the same file name.
      Signed-off-by: NJohannes Sixt <j6t@kdbg.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4ce6fb80
  10. 07 9月, 2010 7 次提交
  11. 06 9月, 2010 2 次提交