Reputation: 179
Is there any way to find out all the check In's Made by a user using TFS for a period of time ..I see all the pending changes but not the Check In's instead of going in to each web page and checking the view history ...
Upvotes: 1
Views: 1543
Reputation: 4112
There are two ways without 3rd party add-ons:
Install the Team Foundation Server Power Tools for TFS 2008. Then under Team Explorer, expand Team Members. Right-click on the user and click Show Checkin History.
From the Visual Studio command line, you can also use the tf history
command and do it for any source path as well. Here's an example that shows commits in a date range recursively for the root source path:
tf history "$/" /version:D"7/30/2012"~D"8/2/2012" /recursive /user:[USERID] /noprompt
Add the /format:detailed
option to that command it will give you file level changes for each commit as well. Remove the /noprompt
if you want a GUI window to appear where you can right-click on each changeset to view the details.
Upvotes: 1