commits
5 rows where "author_date" is on date 2020-12-07
This data as json, CSV (advanced)
Suggested facets: raw_committer, repo, committer, author_date (date), committer_date (date)
| sha ▼ | author_date | committer_date | raw_author | raw_committer | repo | author | committer |
|---|---|---|---|---|---|---|---|
| 00799031bca77645404924d56f0b1c412a130052 | 2020-12-07T22:42:00Z | 2020-12-07T22:42:00Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | github-to-sqlite 207052882 | simonw 9599 | web-flow 19864447 |
| 4c25b035b2370983c8dd5e0c8762e9154e379774 | 2020-12-07T22:41:03Z | 2020-12-07T22:41:03Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 62a6f70c64e4d04c15d9f386dcdf9cd465bbb0f6 | 2020-12-07T20:10:05Z | 2020-12-07T20:10:05Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 8ae0f9f7f0d644b0161165a1084f53acd2786f7c | 2020-12-07T20:16:13Z | 2020-12-07T20:16:13Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| e3143700a245d87bc532d44867b2e380b4225324 | 2020-12-07T19:00:10Z | 2020-12-07T19:00:10Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
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]);