mirror of
https://github.com/github/codeql.git
synced 2026-01-09 20:50:21 +01:00
11 lines
251 B
Plaintext
11 lines
251 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() + ")"
|