Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 782
Robert Avatar asked Mar 05 '09 03:03

Robert


People also ask

What is the difference between SVN and TortoiseSVN?

The main difference between SVN and TortoiseSVN is that the SVN is a distributed version control system while TortoiseSVN is an SVN client implemented as a Microsoft Windows shell extension. In brief, SVN is a version control system. On the other hand, TortoiseSVN is a Subversion client.

How do I view SVN files?

To find information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit.

How do I find SVN modified files?

To get an overview of your changes, use the svn status command. You may use svn status more than any other Subversion command. If you run svn status at the top of your working copy with no arguments, it detects all file and tree changes you've made.


2 Answers

Right click -> TortoiseSVN -> Check For Modifications

Make sure show unversioned files is checked

like image 83
Dan McClain Avatar answered Oct 02 '22 15:10

Dan McClain


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.

like image 35
FryGuy Avatar answered Oct 02 '22 14:10

FryGuy