Here is a small one line command that I created to find all local files, i.e. the files that still need to be added to the repository:
I like to work with svn more. The "svn status" makes the same thing much more easier.
find . -type f -print | xargs p4 filelog -m 1 | grep "not on client"
I like to work with svn more. The "svn status" makes the same thing much more easier.
Comments