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,356
  • 2
  • 30
  • 53
Eliott Roynette
  • 716
  • 8
  • 21

1 Answers1

7

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
  • 140,679
  • 96
  • 298
  • 425