2

I am new in C# and i am actually working om a project C# using a webService and an edmx database object. I would like to put this project on git but I don't know separate generated files and sources files. Does someone can tell me which kind of files should I ignore in git ?

Thanks,

Neil Thompson
  • 6,316
  • 2
  • 28
  • 52
Eliott Roynette
  • 696
  • 7
  • 20

1 Answers1

6

GitHub has a repository with pre-defined .gitignore files. The one for C# (i.e. Visual Studio, see this file) should be a good starting point:

https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

Golo Roden
  • 127,345
  • 89
  • 282
  • 404