code-search-engine

Find in Files: Search all code in Team Foundation Server

别来无恙 提交于 2019-11-27 00:04:03
Is there a way to search the latest version of every file in TFS for a specific string or regex? This is probably the only thing I miss from Visual Source Safe... Currently I perform a Get Latest on the entire codebase and use Windows Search, but this gets quite painful with over 1GB of code in 75,000 files. EDIT : Tried the powertools mentioned, but the "Wildcard Search" option appears to only search filenames and not contents. UPDATE : We have implemented a customised search option in an existing MOSS (Search Server) installation. Team Foundation Server 2015 (on-premises) and Visual Studio

SVN Repository Search [closed]

混江龙づ霸主 提交于 2019-11-26 23:38:55
Is there any good software that will allow me to search through my SVN respository for code snippets? I found 'FishEye' but the cost is 1,200 and well outside my budget. phil_w If you're searching only for the filename, use: svn list -R file:///subversion/repository | grep filename Windows: svn list -R file:///subversion/repository | findstr filename Otherwise checkout and do filesystem search: egrep -r _code_ . Elmar Weber There is sourceforge.net/projects/svn-search . There is also a Windows application directly from the SVN home called SvnQuery available at http://svnquery.tigris.org

Replacement for Google Code Search? [closed]

你。 提交于 2019-11-26 18:42:43
问题 Google Code Search has been incredibly valuable to me as a developer - I use it a couple times a week to see how other developers have used (usually poorly documented) APIs. It's also convenient to see the internals of some of those APIs, or to find which API corresponds to the functionality you want (it's a great resource for Android in particular -- give it some of the text you see on screen, and it'll usually find the implementing class). Now that Google shutting down code search as of

Find in Files: Search all code in Team Foundation Server

拟墨画扇 提交于 2019-11-26 09:18:08
问题 Is there a way to search the latest version of every file in TFS for a specific string or regex? This is probably the only thing I miss from Visual Source Safe... Currently I perform a Get Latest on the entire codebase and use Windows Search, but this gets quite painful with over 1GB of code in 75,000 files. EDIT : Tried the powertools mentioned, but the \"Wildcard Search\" option appears to only search filenames and not contents. UPDATE : We have implemented a customised search option in an