Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure DevOps commits by developer

In Azure DevOps, is there an easy way to find the total number of commits by developer within a specific time period? Possibly with the number of lines added/removed as well? Based on 1 repo or multiple.

Similar to this image from GitHub...

enter image description here

like image 758
Rob Avatar asked Nov 17 '25 03:11

Rob


2 Answers

I think this is a general git question.

What we did in our peoject is similar to Git number of commits per author on all branches

You would go for something like:

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

This would result in: enter image description here

you could also add the author by adding --author=name like: enter image description here

I would suggest to read the docs for options.

like image 132
Daniel Avatar answered Nov 18 '25 21:11

Daniel


You could check out the marketplace. A possible extension would be Contributions Graph, which also allows you to select one or more repositories.

Contributions of a user

like image 21
Alex AIT Avatar answered Nov 18 '25 21:11

Alex AIT