Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn list of files that are modified in local copy

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.

like image 823
Broken Link Avatar asked Jul 22 '09 21:07

Broken Link


People also ask

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.

Which is the svn command to see the list of changes made in a working copy before committing to the repository?

Use svn status command to get the status of the file in the working copy. It displays whether the working copy is modified, or its been added/deleted, or file is not under revision control, etc. 'M' represents that the item has been modified.

How one can see all changes in the working copy since the last update commit in svn?

You can simply click on one revision, then ctrl-click on the other revision (so the two are selected), then rt-click on either one, do "Compare revisions". This WILL show all changes between those two revisions, including changes made in any intervening revision.

How do I find my svn revision history?

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.


2 Answers

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.

like image 174
Torandi Avatar answered Oct 13 '22 16:10

Torandi


I couldn't get svn status -q to work. Assuming you are on a linux box, to see only the files that are modified, run: svn status | grep 'M ' On windows I am not sure what you would do, maybe something with 'FindStr'

like image 37
jdawley Avatar answered Oct 13 '22 17:10

jdawley