I use Tortoise client to checkout/commit my changes to SVN. But I found this little difficult because I\'m not able to find List of all files that are changed in my local copy.
If you only want the filenames and also want any files that have been added (A).
svn st | grep ^[AM] | cut -c9-
Note: The first 7 columns are each one character wide followed by a space then the filename.