我尝试使用Visual Studio Team Services REST api来检索项目的变更集列表。我使用以下uri:
https://<account>.visualstudio.com/defaultcollection/_apis/tfvc/changesets
虽然以上允许我获取整个项目集合的变更集列表,但我无法弄清楚如何过滤掉特定的项目。也就是说,仅检索特定项目中的所有变更集。
VSTS文档here未提供按项目过滤的示例。
答案 0 :(得分:1)
您是否尝试过使用searchCriteria.itemPath
参数?例如。
https://<account>.visualstudio.com/defaultcollection/_apis/tfvc/changesets?searchCriteria.itemPath=$/<project name>
只会列出项目中的变更集