I currently have an IDE that changes binary files in a project just by opening and closing the IDE.
As I am new to version control the last thing I want are conflicts. So to avoid this each time I open and close the IDE I git status to see the changes, I add all files, I commit with a message " No change" or "Change in binary" and upload to my remote repo so that the masters are the same.
I get the feeling that uploading to the external repo for such change is kind of not worth while.
In the mentioned scenario I dont think anything valuable is added to the project binary file just by opening and closing the IDE.
Please advice the best way to handle automatically updated files with in a version control environment.