views:

150

answers:

3

Is there a way with TortoiseSVN to get a list of files that are not in the repository?

+10  A: 

Right click -> TortoiseSVN -> Check For Modifications

Make sure show unversioned files is checked

phsr
+1  A: 

On in any of your local project directories, you can run svn status. The equivalent in TortoiseSvn is here in the manual. Items with a ? mark are unknown to the repository.

Dana the Sane
+1  A: 

I usually right click the root of the subversion tree and select commit. In the dialog box to select which files, it shows the files that have been added to your working copy, but haven't been added to the repository yet. Just remember not to click the ok button.

FryGuy