Is there any way to search a single file in Tortoise SVN from when 1000s of files in a Folder.
You have one line of a question which is so vague that no-one can
possibly answer it, followed by 19 lines of disclaimer. If you want
help you are going to have to make more effort yourself.
Simon
--
: ___
: oo // \\ "De Chelonian Mobile"
: (_,\/ \_/ \ TortoiseSVN
: \ \_/_\_/> The coolest Interface to (Sub)Version Control
: /_/ \_\ http://tortoisesvn.net
------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=2717078
To unsubscribe from this discussion, e-mail: [users-un...@tortoisesvn.tigris.org].
I’m assuming you don’t have access to any search engines and want to look for a filename. You could recursively list the contents of a repository and grep that list…
svn ls -R https://server/repo/project/trunk | grep filename
*bypass*
I am using Windows XP not Linux L
From: Chris Evans [mailto:Chris...@gresearch.co.uk]
Sent: Tuesday, April 05, 2011 3:34 PM
To: us...@tortoisesvn.tigris.org
Subject: RE: Search in Tortoise SVN
I’m assuming you don’t have access to any search engines and want to look for a filename. You could recursively list the contents of a repository and grep that list…
svn ls -R https://server/repo/project/trunk | grep filename
*bypass*
Assuming your access to search engines is still not working. The GnuWin project “provides ports of tools with a GNU or similar open source license, to modern MS-Windows” http://gnuwin32.sourceforge.net/ One of which is grep (http://gnuwin32.sourceforge.net/packages/grep.htm) which I’m sure you’ll find useful in a wide variety of other situations.
*bypass*