I want to go through my changesets and search for a specific checkin/changeset comments on Visual studio 2013 or on Visual Studio Online. How can I do this? On github is very easy to do this but I am struggling on VS online.
Asked
Active
Viewed 7,294 times
5
-
2See also http://stackoverflow.com/q/925875/292060 – goodeye Nov 13 '14 at 21:42
3 Answers
13
If you have TFS Power Tools installed, you can use the following
tfpt searchcs
It brings up a dialog (like following) that allows you to search Change Sets by comment text amongst other things

Hamid Shahid
- 4,486
- 3
- 32
- 41
3
Find Changeset By Comment extension for Visual Studio https://findchangeset.codeplex.com/releases/view/99003
For Visual Studio 2013 http://developer.azurewebsites.net/2014/08/find-changeset-by-comment-2013-for-visual-studio-2013/

Lauri Lubi
- 529
- 5
- 8
2
PowerTools are a great way (See other answer), here is the Quick and dirty way:
From the "View History"-Window:
- Select all relevant Changesets you want to search
- Press CTRL+C to copy to clipboard
- Paste in Text editor
- Use search function there

eFloh
- 2,098
- 20
- 24