Re: Subversion equivalent to VSS diff for binary files

2010-10-18 Thread David Weintraub
On Mon, Oct 18, 2010 at 10:25 AM, Daniel Shahaf wrote: > Seems to me the solution is "Don't store your binaries in Subversion". It all depends upon the binary file type and why you're storing it. If your build uses GIFs and JPGs, you need to store binary files on Subversion. And, Subversion has n

Re: Subversion equivalent to VSS diff for binary files

2010-10-18 Thread Les Mikesell
On 10/18/2010 9:25 AM, Daniel Shahaf wrote: (didn't read it all very very carefully; was too long for that) David Weintraub wrote on Mon, Oct 18, 2010 at 09:47:32 -0400: Text files are stored as diffs and removing a particular revision of a text file won't save a lot of room in the repository.

Re: Subversion equivalent to VSS diff for binary files

2010-10-18 Thread Ryan Schmidt
On Oct 18, 2010, at 09:25, Daniel Shahaf wrote: >> However, binary files are a bit different. Changing one line in a file >> and then compiling it may cause a cascade of changes, so the resulting >> difference between the previous revision of the binary and current >> version of the binary are qu

Re: Subversion equivalent to VSS diff for binary files

2010-10-18 Thread Daniel Shahaf
(didn't read it all very very carefully; was too long for that) David Weintraub wrote on Mon, Oct 18, 2010 at 09:47:32 -0400: > Text files are stored as diffs and removing a particular > revision of a text file won't save a lot of room in the repository. ... > However, binary files are a bit diffe

Re: Subversion equivalent to VSS diff for binary files

2010-10-18 Thread David Weintraub
Subversion does handle binary files without any problems. In uses the property svn:mime-type on the file to mark it as a binary file, so it knows not to attempt a text merge on the file. Subversion does a good job with handling binaries. However, there is issue that makes storing binary files in S

Re: Subversion equivalent to VSS diff for binary files

2010-10-15 Thread Ryan Schmidt
On Oct 15, 2010, at 12:06, Mark Phippard wrote: > Replying to list. > > On Fri, Oct 15, 2010 at 1:02 PM, Phil Pinkerton wrote: > >> Thanks that is exactly what I needed, I just need to figure out how to >> show that if a file was re-compiled but there are no changes that >> Subversion sees the

Re: Subversion equivalent to VSS diff for binary files

2010-10-15 Thread Mark Phippard
Replying to list. On Fri, Oct 15, 2010 at 1:02 PM, Phil Pinkerton wrote: > Thanks that is exactly what I needed, I just need to figure out how to > show that if a file was re-compiled but there are no changes that > Subversion sees the difference as perhaps a time stamp or some compile > data in

Re: Subversion equivalent to VSS diff for binary files

2010-10-15 Thread Mark Phippard
Replying to list. On Fri, Oct 15, 2010 at 12:28 PM, Phil Pinkerton wrote: > I am having a time understanding this also: > > OK here is what details I have quoted from from the other team: > > "A few things I want to point out...Subversion was meant for handling > text files not binary files.  WT

Re: Subversion equivalent to VSS diff for binary files

2010-10-15 Thread Mark Phippard
On Fri, Oct 15, 2010 at 11:43 AM, wrote: > > We are migrating teams off VSS and StarTeam to Subversion. > > Some say that VSS ( Visual Source Safe ) has a diff that tells them that a > binary has changed and what is the latest ( newest) version. > > Does Subversion have a way to accomplish the sa

Subversion equivalent to VSS diff for binary files

2010-10-15 Thread PINKERP1
We are migrating teams off VSS and StarTeam to Subversion. Some say that VSS ( Visual Source Safe ) has a diff that tells them that a binary has changed and what is the latest ( newest) version. Does Subversion have a way to accomplish the same binary "diff" they need ? Perhaps through file pr