Robert Deml
Robert Deml

Reputation: 12532

How can I get TortoiseSVN to get a list of files that are not in the repository?

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

Upvotes: 17

Views: 8291

Answers (3)

FryGuy
FryGuy

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

Dana the Sane
Dana the Sane

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

Dan McClain
Dan McClain

Reputation: 11920

Right click -> TortoiseSVN -> Check For Modifications

Make sure show unversioned files is checked

Upvotes: 38

Related Questions