home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

5 rows where "author_date" is on date 2020-03-27 and repo = 213286752 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

committer_date 5 ✖

  • 2020-03-27T20:43:53Z 1
  • 2020-03-27T22:13:35Z 1
  • 2020-03-27T22:22:04Z 1
  • 2020-03-27T22:22:23Z 1
  • 2020-03-27T22:23:16Z 1

repo 1

  • pocket-to-sqlite · 5 ✖

committer_date (date) 1 ✖

  • 2020-03-27 5

committer 1 ✖

  • simonw 5

author_date (date) 1 ✖

  • 2020-03-27 · 5 ✖

author 1

  • simonw 5
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
046ca380fd93f352da6e58139b96f2e4a365f53a Release 0.2 2020-03-27T22:23:16Z 2020-03-27T22:23:16Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 pocket-to-sqlite 213286752 simonw 9599 simonw 9599
4c35bd6ad27c5d60a23a858130236a99324e620b Documentation for fetch, --all and --silent Closes #2 2020-03-27T22:22:23Z 2020-03-27T22:22:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 pocket-to-sqlite 213286752 simonw 9599 simonw 9599
302ea29178ba8d57446e0a3f5a43bf0501a33649 Fixed --silent option 2020-03-27T22:22:04Z 2020-03-27T22:22:04Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 pocket-to-sqlite 213286752 simonw 9599 simonw 9599
a7f58e96b45edb4b0f91fac13f57283cec9bcebb Pagination, progress bar and --since support Closes #1 Refs #2 - still needs README update Also upgraded to sqlite-utils 2.x 2020-03-27T22:12:51Z 2020-03-27T22:13:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 pocket-to-sqlite 213286752 simonw 9599 simonw 9599
78af2b8ada30e7e81f910cb632bfedff98201920 Use pocket_ prefix in auth.json, closes #4 2020-03-27T20:43:53Z 2020-03-27T20:43:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 pocket-to-sqlite 213286752 simonw 9599 simonw 9599

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 23.079ms · About: github-to-sqlite