I know there is an easy way to do this with SVN so there must be a similar way with TFS.
Basically, I want to have a list of every file a particular username ever edited (IE: checked out & changed or added). This is on TFS 2008.
I know there is an easy way to do this with SVN so there must be a similar way with TFS.
Basically, I want to have a list of every file a particular username ever edited (IE: checked out & changed or added). This is on TFS 2008.
I found one way to do it:
This returns a list of changesets from the user. You can then click the details button to expand the changeset.
The answers so far return a list of changesets, not a list of files. Try:
Get-TfsItemHistory $/ -r -user username -all | Select-TfsItem | sort -unique path
Using the Powershell cmdlets also included with the Power Tools.