tags:

views:

35

answers:

2

I'd like to check if a file was added as binary, but I don't know what to look for in cvs status or cvs log.. any hints?

+2  A: 
cvs status -v binaryfile.gif

This will show the status of the binaryfile.gif and the Sticky Options will show -kb if it is a binary file.

Mike McQuaid
thanks, thats it. Hard to find in the docs if you ask me
Maarten
+1  A: 

Um, my CVS days are long since over (good!), but wasn't it the -kb option what you need to look for? I think cvs status -v will show you this.

sbi