home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

5 rows where "author_date" is on date 2021-03-29, 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)

author 5

  • simonw 1
  • mroswell 1
  • camallen 1
  • koaning 1
  • bobwhitelock 1

repo 1

  • datasette · 5 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
7b1a9a1999eb9326ce8ec830d75ac200e5279c46 Fix little typo (#1282) 2021-03-29T19:57:34Z 2021-03-29T19:57:34Z Marjorie Roswell 887085a02768a99c6da5c415beac8a6c3cc04069 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 mroswell 192568 web-flow 19864447
13fd9bdf01451decd55e1cbbd4017c0e5d0522e7 docker push --all-tags, refs #1281 2021-03-29T01:07:49Z 2021-03-29T01:07:49Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
f92d823766872a6fd7e76c5249a6b2de1ab0f447 ensure immutable databses when starting in configuration directory mode with (#1229) * check if immutables is empty list of None * update docs on how to create the inspect-data.json 2021-03-29T00:17:31Z 2021-03-29T00:17:31Z Campbell Allen 50f8a5e45b42f54cd7dfc01c8c34b8736a785e77 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 camallen 295329 web-flow 19864447
e72397d65b06b019521b6411243687464ac8d8ca Add styling to lists within table cells (fixes #1141) (#1252) This overrides the Datasette reset (see https://github.com/simonw/datasette/blob/d0fd833b8cdd97e1b91d0f97a69b494895d82bee/datasette/static/app.css#L35-L38), to add back the default styling of list items displayed within Datasette table cells. 2021-03-29T00:14:04Z 2021-03-29T00:14:04Z Bob Whitelock 62dd4d3238df6431f690ab98cee3e5a02daf6316 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 bobwhitelock 7476523 web-flow 19864447
c96a3826cf50cb347f6a415b56d8105ba6d8dcb0 Added `--app` to fly install command. (#1279) 2021-03-29T00:11:55Z 2021-03-29T00:11:55Z vincent d warmerdam 289d370ce73360043d773e9c3643439f289b038a GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 koaning 1019791 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 46.514ms · About: github-to-sqlite