0

Possible Duplicate:
How do I get a list of all unversioned files from svn?

How to determine that a file with a given path is under svn version control or is a generated file from the build.

Community
  • 1
  • 1
Abhishek Jain
  • 4,478
  • 8
  • 34
  • 51

2 Answers2

4

Run svn st (from the top level directory), all files which are currently not under versioning control are marked with a ? before the filename.

akluth
  • 8,393
  • 5
  • 38
  • 42
0

If you check SVN it will show something like a + that it has been added recently. If you didn't create that file yourself, you can take it as being generated from the build.

or you can run a check svn command which is explained here already: How do I get a list of all unversioned files from SVN?

Community
  • 1
  • 1
Rob
  • 3,556
  • 2
  • 34
  • 53