commits
7 rows where "author_date" is on date 2021-06-05
This data as json, CSV (advanced)
Suggested facets: raw_author, raw_committer, author, committer, author_date (date), committer_date (date)
| sha ▼ | author_date | committer_date | raw_author | raw_committer | repo | author | committer |
|---|---|---|---|---|---|---|---|
| 030deb4b25cda842ff7129ab7c18550c44dd8379 | 2021-06-05T23:01:34Z | 2021-06-05T23:02:03Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 0dfb9241718139f8ad626d22aac25bcebd3a9c9c | 2021-06-05T22:55:07Z | 2021-06-05T22:55:07Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| 368aa5f1b16ca35f82d90ff747023b9a2bfa27c1 | 2021-06-05T19:48:51Z | 2021-06-05T19:48:51Z | louispotok b9073d8bf7774f95bd90f812e3d6e858520194be | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | louispotok 5413548 | web-flow 19864447 |
| 58746d3c514004f504223a724e948469a0d4abb3 | 2021-06-05T22:06:52Z | 2021-06-05T22:06:55Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| 8f311d6c1d9f73f4ec643009767749c17b5ca5dd | 2021-06-05T21:49:16Z | 2021-06-05T22:03:38Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | datasette 107914493 | simonw 9599 | simonw 9599 |
| a63412152518581c6a3d4e142b937e27dabdbfdb | 2021-06-05T18:59:54Z | 2021-06-05T18:59:54Z | Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 | GitHub cd792325681cbad9f663f2879d8b69f1edbb678f | datasette 107914493 | simonw 9599 | web-flow 19864447 |
| ff29dd55fafd7c3d27bd30f40945847aa4278309 | 2021-06-05T20:15:58Z | 2021-06-05T20:18:37Z | 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]);