https://github.com/git/git
Revision 070d276cc15494184d2004d506e663f0cb791d44 authored by Junio C Hamano on 16 June 2015, 21:33:44 UTC, committed by Junio C Hamano on 16 June 2015, 21:33:44 UTC
The clean/smudge interface did not work well when filtering an
empty contents (failed and then passed the empty input through).
It can be argued that a filter that produces anything but empty for
an empty input is nonsense, but if the user wants to do strange
things, then why not?

* jh/filter-empty-contents:
  sha1_file: pass empty buffer to index empty file
2 parent s 659d4c8 + f6a1e1e
Raw File
Tip revision: 070d276cc15494184d2004d506e663f0cb791d44 authored by Junio C Hamano on 16 June 2015, 21:33:44 UTC
Merge branch 'jh/filter-empty-contents' into maint
Tip revision: 070d276
git.rc
1 VERSIONINFO
FILEVERSION     MAJOR,MINOR,0,0
PRODUCTVERSION  MAJOR,MINOR,0,0
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    BLOCK "040904b0"   /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
    BEGIN
      VALUE "CompanyName", "The Git Development Community\0"
      VALUE "FileDescription", "Git for Windows\0"
      VALUE "InternalName", "git\0"
      VALUE "OriginalFilename", "git.exe\0"
      VALUE "ProductName", "Git\0"
      VALUE "ProductVersion", GIT_VERSION "\0"
    END
  END

  BLOCK "VarFileInfo"
  BEGIN
    VALUE "Translation", 0x409, 1200
  END
END
back to top