views:

1113

answers:

2

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. Is there any short cut or something that I overlooked?

I'm new to SVN. FYI.

+3  A: 

I'm not familiar with tortoise, but with subversion to linux i would type

svn status

Some googling tells me that tortoise also supports commandline commandos, try svn status in the folder that contains the svn repository.

Torandi
I use windows bro!
Broken Link
The Windows command line client has the same command, so you can use this if you are even using cmd.
DeadHead
To show *only* the modified files in the directory: svn status -q
kcrumley
+4  A: 

The "Check for Modifications" command in tortoise will display a list of all changed files in the working copy. "Commit" will show all changed files as well (that you can then commit). "Revert" will also show changed files (that you can then revert).

1800 INFORMATION
Ah! I missed to try "check for modifications"
Broken Link