I have a folder, versioned under SVN, with let’s say 100 of files which are not under revision control – and about 10 that are.
On svn, version 1.6.6, if I type svn status, I get unversioned files with a question mark, ?, or the modified/added files M/A – but I cannot see local files that are versioned, but haven’t changed. svn list goes online, and retrieves say names of, say, four versioned files (but not all ten).
Is there a command I can use on the command line, so svn lists which files are under version control in a given local directory?
Many thanks in advance for any answers,
Cheers!
svn lswill list all files. If you are not seeing all the files that you expect, maybe they are not in the latest revision, in which case specify the revision using--revision, or probably they are within folders and hence you will have to include--recursive.Otherwise, if you don’t want to use
svn ls, you will can write a one liner in bash so that you can subtract the output of normallsand thesvn statusentries for untracked files.