1
0

upgrade to extendedGitGraph 2 (WIP)

This commit is contained in:
2019-12-28 14:00:11 +01:00
parent b4c6870c70
commit ba96d8f726
20 changed files with 1840 additions and 714 deletions

10
www/extern/egh/db_queryyear.sql vendored Normal file
View File

@@ -0,0 +1,10 @@
SELECT commitdate AS commitdate, COUNT(*) as count FROM
(
SELECT
[hash] AS hash, min([author_email]) AS mail1, min([committer_email]) AS mail2, date(min([date])) AS commitdate
FROM COMMITS
GROUP BY hash
HAVING (strftime('%Y', commitdate) = :year AND (/*{INDETITY_COND}*/))
)
GROUP BY commitdate
ORDER BY commitdate