Reputation: 1573
I work with a company that makes use of Team Foundation Server 2010 (TFS) for source control. We have a policy in place that requires those checking files into source control to enter the name of a code reviewer. This has been working well, as we have good support for this policy from management. However, we have discovered that some people are simply entering "N/A" into the code reviewer spot, instead of someone's name. We would like some way to report on this, or otherwise determine who, when, and where "N/A" is being entered.
Is there a way to accomplish this?
Upvotes: 0
Views: 412
Reputation: 14052
If you have the TFS power tools installed you can run the command tfpt searchcs
from the command line. This will bring up a UI that allows you to search for changesets using a number of criteria, the code reviewer should be one of the fields you can search on.
Upvotes: 3