1

There are a number of files in my database project that AnkhSvn isn't committing to the repository. To clean things up using Tortoise, can I safely add them all to the ignore list?

Projectname.dbmdl
Projectname.dbproj.schemaview
Projectname.dbproj.user
Sql\debug\*
Sql\release\*
p.campbell
  • 98,673
  • 67
  • 256
  • 322

1 Answers1

5

Indeed, add those to the ignore list. AnkhSVN doesn't need that, because Visual Studio tells Ankh what files should be source controlled (and it ignores the rest).

They are all user files and/or generated. See linked questions for more info about .dbproj.schemaview and .dbmdl files. The rest speaks for itself.

Community
  • 1
  • 1
Sander Rijken
  • 21,376
  • 3
  • 61
  • 85