Hi!
I have a big project written in Delphi and I want to manage it's sources using Git. I created Git repository, which includes my application's sources and 3rd party components. All that stuff is automatically building using msbuild.
The biggest problem is RES files. Some of them are updated every time I rebuild my application, some not. Some have *.rc sources, some doesn't. I can't ignore all res files (.gitignore) because without resources my project will fail to build. Also, I can't include res files - they are changed form build to build, I don't want to see them in diffs.
What do you do with your *.res files under Git? Any advices?