mirror of
https://github.com/github/codeql.git
synced 2026-01-03 01:30:19 +01:00
13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
/**
|
|
* @name Display strings of commits
|
|
* @kind display-string
|
|
* @id py/commit-display-strings
|
|
* @metricType commit
|
|
*/
|
|
|
|
import python
|
|
import external.VCS
|
|
|
|
from Commit c
|
|
select c.getRevisionName(), c.getMessage() + "(" + c.getDate().toString() + ")"
|