With TFS I need to find a changeset by comment, and/or by developer. Maybe I'm just blind today, but I don't see a simple way in the Source Control Explorer to do this task?
相关问题
- Getting error: File extension specified '.webt
- Using TFS command line tf.exe how can I copy a rep
- TFS Power tools Migrate doesn't actually migra
- What is the difference between tfpt scorch and tfp
- TFS 2017 Agent: and error occured while sending th
相关文章
- Is it possible to do a “destroy history” in TFS?
- How do I make a TeamCity build appear in the TFS B
- TFS vs. JIRA/Bamboo/SVN [closed]
- Why doesn't my .tfignore file ignore my packag
- Is it possible to create a docker container from T
- How to Move TFS 2010 Build Definition between Proj
- How to fix TF246017 The Team foundation server cou
- How to open TFS Power Tools - Alerts Explorer
Alternatively, without having to install power tools, the following command will work if your looking for the search term findme.
Windows:
tf history "$/Team Project/Development" /noprompt /recursive | findstr findme
Linux:
tf history "$/Team Project/Development" /recursive | grep findme
NB. Please thank this guy if you found this useful.
I added
tfpt searchcs
from the TFS Power Tools as external tool in VisualStudio:C:\Program Files (x86)\Microsoft Team Foundation Server 2015 Power Tools\TFPT.EXE
(or wherever you installed your TFS Power Tools)searchcs /collection:http://tfsserver:8080/tfs $(SolutionDir)
(the solution path is converted to the server path)c:\path\to\your\vs\IDE
(unless thetf.exe
is in your path (what is not the case by default) this ensures you can view the changeset details from the search dialog, for it runstf.exe
)There's a Visual Studio add-in that does it now: http://visualstudiogallery.msdn.microsoft.com/3f65dee8-5a44-4771-929b-26531c482fbf.
To see the checkins for a team member:
In team explorer, navigate to the Team Project, navigate to Team Members, right click the team member for who you want to see the changesets, and select "Show CheckIn History".
I was able to do this in the TFS web portal code section.
Navigate to TFS in your browser, go to code, click on changesets, then advanced search. You can filter by user and date range. You can not search by comment, but if you have a general date range in mind then you can filter it down then use the browsers search (ctrl + f).