Re: [git-users] Handling binary files?

2012-04-04 Thread Tassilo Horn
Eric Parent writes: Hi Eric, > Seems like I'm facing a problem that was encountered quite a few times > already but I have a problem telling Git how to behave with binary > files. > > My objective is rather simple: overwrite the binary files during a > "git pull". > > What I've done: > I've crea

Re: [git-users] Handling binary files?

2012-04-04 Thread Serge Matveenko
On Wed, Apr 4, 2012 at 17:30, Eric Parent wrote: > I've created a .gitattributes with "*.sdf -binary" in my project's http://progit.org/book/ch7-2.html *.sdf -crlf -diff or *.sdf binary not *.sdf -binary because you are telling git to not treat this files as binary with this line. look on t