home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

11 rows where "committer_date" is on date 2022-01-26 and repo = 140912432 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

  • sqlite-utils · 11 ✖

author 1

  • simonw 11
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
d1e9f09c06f29f27eca5c1a06a75072e28a79f0d Removed unneccessary import, refs #392 2022-01-26T18:23:48Z 2022-01-26T18:23:48Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
d1d2a8e6fa95d8daf11973f747578602d08e4962 sqlite-utils bulk --batch-size option, closes #392 2022-01-26T18:15:23Z 2022-01-26T18:15:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
a9fca7efa4184fbb2a65ca1275c326950ed9d3c1 Release 3.22.1 Refs #384, #387, #389 2022-01-26T03:28:30Z 2022-01-26T03:28:30Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
be1e89da5fa6f28b8910610aa9f2b95f1fe3168b Fixed flake8 errors 2022-01-26T03:22:06Z 2022-01-26T03:22:06Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
2b20957b1869b5a2213960d2e3a67188f42d2a2f Better validation for upsert --pk, closes #390 2022-01-26T03:19:39Z 2022-01-26T03:19:39Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
4c6023452cbfc0c112cfc2a940ed40d22e8d36c9 Examples in --help for remaining commands, closes #384 2022-01-26T03:14:59Z 2022-01-26T03:14:59Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
6e85a4bbbefced11501a8e215d0847addc159199 Added examples to more --help output, refs #384 2022-01-26T02:56:44Z 2022-01-26T02:56:44Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
25d8c820de195039106b736440a5c4e3f72cd8b6 Correct domain for Plausible, refs #389 2022-01-26T02:06:02Z 2022-01-26T02:06:02Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
89c01103ec0b684b6f871694f77fc49d0cb57f98 Custom layout template for docs Adds plausible analytics, closes #389 Implements banner on latest page, closes #388 2022-01-26T02:00:16Z 2022-01-26T02:00:16Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
b3efb292127036d710ae3cb63daa36cd7a4d7d0c SQLite can drop columns now It gained that ability in 3.35.0 in 2021-03-12: https://www.sqlite.org/changes.html#version_3_35_0 2022-01-26T01:48:57Z 2022-01-26T01:48:57Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
8d51ae48ab084284681d597b436be2112650a3b9 Getting started section for Python library, closes #387 2022-01-26T01:35:26Z 2022-01-26T01:35:26Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 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 49.82ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows