I encountered several times conflicts between .dll, .exe and some other non-code files. In this case, what should i do for avoiding submit useless files?
Thanks
I encountered several times conflicts between .dll, .exe and some other non-code files. In this case, what should i do for avoiding submit useless files?
Thanks
You should add them to the ".gitignore" file.
For example:
[Bb]in/
[Oo]bj/
will exclude the bin and obj directories that are usually output by Visual Studio.