commits
11 rows where "author_date" is on date 2020-10-09
This data as json, CSV (advanced)
Suggested facets: raw_committer, committer, author_date (date), committer_date (date)
| sha ▼ | author_date | committer_date | raw_author | raw_committer | repo | author | committer |
|---|---|---|---|---|---|---|---|
| 1bdbc8aa7f4fd7a768d456146e44da86cb1b36d1 | 2020-10-09T17:57:55Z | 2020-10-09T17:57:55Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 549a007683e38fd13da72be7b2f5ee1adb1484c5 | 2020-10-09T23:13:41Z | 2020-10-09T23:13:41Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 6421ca2b22a8ebd801ca17b2ea38a98d353f1faa | 2020-10-09T16:28:17Z | 2020-10-09T16:28:17Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 6e091b14b651d67e0ff41a353d36bbeb1d8ba235 | 2020-10-09T16:22:49Z | 2020-10-09T16:22:49Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 7249ac5ca04b5ddc6517750326ee7e522cc49145 | 2020-10-09T01:43:53Z | 2020-10-09T01:43:53Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 896cc2c6acfefa65c54a162831e7f09159603988 | 2020-10-09T16:26:17Z | 2020-10-09T16:26:17Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 8f97b9b58e77f82fef1f10e9c9f6754b993544b6 | 2020-10-09T16:11:24Z | 2020-10-09T16:11:24Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 99488de329fa252f54db3166e46da468aa512388 | 2020-10-09T21:50:19Z | 2020-10-09T21:50:19Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| a61f0e4e1588083c9fe4636b8fb7178477c4c4a1 | 2020-10-09T17:51:03Z | 2020-10-09T17:52:44Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| c12b7a5def7028845a54a9fdac4052a87a0a8bb8 | 2020-10-09T17:19:50Z | 2020-10-09T17:20:25Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| ef76c9ea571eeefe136a18202f87ea8c4ef80ace | 2020-10-09T21:49:13Z | 2020-10-09T21:49:13Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [commits] (
[sha] TEXT PRIMARY KEY,
[message] TEXT,
[author_date] TEXT,
[committer_date] TEXT,
[raw_author] TEXT REFERENCES [raw_authors]([id]),
[raw_committer] TEXT REFERENCES [raw_authors]([id]),
[repo] INTEGER REFERENCES [repos]([id]),
[author] INTEGER REFERENCES [users]([id]),
[committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
ON [commits] ([raw_author]);