TFS Web 界面:是否可以将 git 存储库的历史记录限制在精确的提交范围内?
TFS web interface: is it possible to limit the history of a git repository to a precise range of commits?
在 TFS2015 网络界面(代码中心)中,用户可以列出特定日期范围内的所有提交。
是否可以列出特定 提交 范围内的所有提交?
这将对应于此页面上描述的 WebAPI 功能:https://www.visualstudio.com/en-us/integrate/api/git/commits#GetalistofcommitsBetweentwoversions
是的,是的。
通过 "branches" 控制器。
查询类似于
http://{HOST}:8080/tfs/{COLLECTION}/_git/{REPOSITORYNAME}/branches#baseVersion=GC{COMMITID}&targetVersion=GC{COMMITID}&_a=commits
在 TFS2015 网络界面(代码中心)中,用户可以列出特定日期范围内的所有提交。
是否可以列出特定 提交 范围内的所有提交?
这将对应于此页面上描述的 WebAPI 功能:https://www.visualstudio.com/en-us/integrate/api/git/commits#GetalistofcommitsBetweentwoversions
是的,是的。 通过 "branches" 控制器。
查询类似于 http://{HOST}:8080/tfs/{COLLECTION}/_git/{REPOSITORYNAME}/branches#baseVersion=GC{COMMITID}&targetVersion=GC{COMMITID}&_a=commits