开发人员的Azure DevOps提交

问题描述 投票:1回答:2

在Azure DevOps中,是否有一种简单的方法来查找开发人员在特定时间段内的提交总数?可能还有添加/删除的行数吗?基于1个回购或多个回购。

类似于该图片来自GitHub ...

enter image description here

azure azure-devops commit
2个回答
2
投票

您可以查看市场。可能的扩展名是Contributions Graph,它也允许您选择一个或多个存储库。

Contributions of a user


0
投票

我认为这是一个通用的git问题。

我们在个人中所做的与Git number of commits per author on all branches类似

您会喜欢的东西:

git shortlog -s -n --all --no-merges --since="22 Aug 2019" --before="01 Sept 2019"

这将导致:enter image description here

您还可以通过添加--author=name来添加作者,例如:enter image description here

我建议阅读docs作为选项。

© www.soinside.com 2019 - 2024. All rights reserved.