The tile is exactly my question.
[edited out mistaken code]
The tile is exactly my question.
[edited out mistaken code]
You could use svn status command.
If you didn't set ignore property the files will be shown with '?' prefix.
If you're using a PC, TortoiseSVN highlights each file with an overlay icon indicating its status with respect to SVN
From command line if you run "svn st" files not under subversion control will show with a ? beside them.
If you're on linux, from the topmost directory which you have under svn, run this command:
svn status
Any files that come up as having the ? symbol beside them are not under version control. You can add them with 'svn add < filename >'
Commit them to your repository as usual with svn commit.
You can use svn stat
to see any files that exist in your working copy that aren't being ignored and are not in your repository. They will be marked with a question mark ?. To see every file that is not in the repository (even those that would normally be ignored by svn), use svn stat --no-ignore.