2

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

Esther Fan - MSFT
  • 8,276
  • 4
  • 27
  • 25
Bo HU
  • 155
  • 1
  • 10
  • 1
    a quite complete list of what shall be ignored: http://stackoverflow.com/questions/2143956/gitignore-for-visual-studio-projects-and-solutions – eckes Jan 20 '14 at 15:11

1 Answers1

1

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.

DaveShaw
  • 52,123
  • 16
  • 112
  • 141