Reputation: 12532
Is there a way with TortoiseSVN to get a list of files that are not in the repository?
Upvotes: 17
Views: 8291
Reputation: 8744
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.
Upvotes: 2
Reputation: 15198
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.
Upvotes: 1
Reputation: 11920
Right click -> TortoiseSVN -> Check For Modifications
Make sure show unversioned files is checked
Upvotes: 38