Export TFS 2010 History to Excel or Text Document

前端 未结 5 1502
忘掉有多难
忘掉有多难 2020-12-28 16:24

How do you export history from TFS 2010 that includes the user, date and the complete comment (not truncated)?

For example, in Team Explorer: right-click team member

5条回答
  •  再見小時候
    2020-12-28 17:01

    You can also use TFS Rest API like this:-

    https://{accountName}.visualstudio.com/{project}/_apis/tfvc/changesets?
    searchCriteria.author={userName}&$top=100
    

    This will generate a JSON, you can upload it to any online site like https://json-csv.com/ and get the CSV.

提交回复
热议问题