mirror of
https://github.com/github/codeql.git
synced 2026-01-20 18:04:46 +01:00
17 lines
311 B
Plaintext
17 lines
311 B
Plaintext
/**
|
|
* @name Number of commits
|
|
* @description Number of commits
|
|
* @kind treemap
|
|
* @id py/historical-number-of-commits
|
|
* @treemap.warnOn highValues
|
|
* @metricType commit
|
|
* @metricAggregate sum
|
|
*/
|
|
|
|
import python
|
|
import external.VCS
|
|
|
|
from Commit c
|
|
where not artificialChange(c)
|
|
select c.getRevisionName(), 1
|