Reputation: 267230
In TFS, I want to see how many files I modified for a day/week/etc.
Is this possible?
Upvotes: 2
Views: 976
Reputation: 20382
from http://msdn.microsoft.com/en-us/library/yxtbh4yh(v=vs.100).aspx:
Execute all commands from the root directory of your workspace:
Show my changes for the year 2000: (You may need to use your local date format if MM/dd/yyyy does not work for you)
tf history . /r /noprompt /version:D"01/01/2000"~D"01/01/2001" /user:me
Upvotes: 1
Reputation: 11770
Yup. You can even get fancy graphs :-) You can either use the TFS Data Warehouse that stores this data, or you can make use of the TFS command line (tf.exe). tf history would be the command you would execute for detailed information on history and see the following blog post I wrote about accessing the TFS data warehouse information from Excel:
http://www.woodwardweb.com/vsts/getting_started.html
Upvotes: 1