Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

5 Answers

up vote 12 down vote accepted

The "Check for Modifications" command in tortoise will display a list of all changed files in the working copy. "Commit" will show all changed files as well (that you can then commit). "Revert" will also show changed files (that you can then revert).

share|improve this answer
Ah! I missed to try "check for modifications" – Broken Link Jul 22 '09 at 21:54

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.

share|improve this answer
2  
I use windows bro! – Broken Link Jul 22 '09 at 21:55
6  
The Windows command line client has the same command, so you can use this if you are even using cmd. – DeadHead Jul 22 '09 at 21:56
8  
To show only the modified files in the directory: svn status -q – kcrumley Mar 3 '10 at 21:59
1  
@BrokenLink svn installation contains all the binaries you want to have. Don't always go for UI. It will be painful and time consuming – sarat Dec 4 '12 at 9:24

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

share|improve this answer
6  
svn status | grep '^M' would work better. – David Rivers Jan 14 '11 at 16:17
4  
svn st | grep '^M' is shorter.. – sunglim Jan 18 '12 at 5:02
1  
svn st | grep ^M is shorter still :) – kliteyn Dec 31 '12 at 9:49

Below command will display the modfied files alone in windows.

svn status | findstr "^M"
share|improve this answer

this should do it in Windows: svn stat | find "M"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.