home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

4 rows where "author_date" is on date 2020-10-18, raw_committer = "cd792325681cbad9f663f2879d8b69f1edbb678f" and repo = 107914493 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: author_date (date), committer_date (date)

repo 1

  • datasette · 4 ✖

author 1

  • simonw 4
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
c37a0a93ecb847e66cfe7b6f9452ba210fcae91b Build and deploy docs.db to datasette-docs-latest 2020-10-18T21:35:26Z 2020-10-18T21:35:26Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
f7147260a451896b27f466ebcd6ac648273650f0 Added datasette-atom and datasette-ics 2020-10-18T20:56:35Z 2020-10-18T20:56:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
b0b04bb7c185bed9bdbb9a3f3f24f264999296b6 Delete .readthedocs.yml It worked fine without configuration, and my attempt to build the xml version failed with an error message: Problem in your project's configuration. Invalid "formats": expected one of (htmlzip, pdf, epub), got xml 2020-10-18T18:37:35Z 2020-10-18T18:37:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
a0e9ae3c258c62221f8603e2944265f27ba07c14 Build extra formats with Read the Docs 2020-10-18T18:20:33Z 2020-10-18T18:20:33Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 67.42ms · About: github-to-sqlite