Brent Saner on 6 Oct 2007 00:52:09 -0000 |
yeah, that was what i was thinking. i'd be slow as hell. but OOOOH. look what i just found on SVN's site's FAQ's ( http://subversion.tigris.org/faq.html#binary-files ): How does Subversion handle binary files?When you first add or import a file into Subversion, the file is examined to determine if it is a binary file. Currently, Subversion just looks at the first 1024 bytes of the file; if any of the bytes are zero, or if more than 15% are not ASCII printing characters, then Subversion calls the file binary. This heuristic might be improved in the future, however. If Subversion determines that the file is binary, the file receives an svn:mime-type property set to "application/octet-stream". (You can always override this by using the auto-props feature or by setting the property manually with svn propset.) Subversion treats the following files as text:
All other files are treated as binary, meaning that Subversion will:
In all other respects, Subversion treats binary files the same as text files, e.g. if you set the svn:keywords or svn:eol-style properties, Subversion will perform keyword substitution or newline conversion on binary files. Note that whether or not a file is binary does not affect the amount of repository space used to store changes to that file, nor does it affect the amount of traffic between client and server. For storage and transmission purposes, Subversion uses a diffing method that works equally well on binary and text files; this is completely unrelated to the diffing method used by the 'svn diff' command. On 10/5/07, gabriel rosenkoetter <gr@eclipsed.net> wrote: At 2007-10-05 19:45 -0400, Brent Saner <brent.saner@gmail.com> wrote: -- Brent Saner 215.264.0112(cell) 215.362.7696(residence) http://www.thenotebookarmy.org ___________________________________________________________________________ Philadelphia Linux Users Group -- http://www.phillylinux.org Announcements - http://lists.phillylinux.org/mailman/listinfo/plug-announce General Discussion -- http://lists.phillylinux.org/mailman/listinfo/plug
|
|