{"id":22980501,"url":"https://github.com/kcartlidge/commitlist","last_synced_at":"2026-04-28T08:32:31.014Z","repository":{"id":183620010,"uuid":"670371491","full_name":"kcartlidge/CommitList","owner":"kcartlidge","description":"Get a nice readable commit summary for multiple repos over the last *x* number of days, optionally filtered by author.","archived":false,"fork":false,"pushed_at":"2023-07-26T08:33:56.000Z","size":27603,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-08T00:41:31.207Z","etag":null,"topics":["commit","git","history"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kcartlidge.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-24T22:58:52.000Z","updated_at":"2023-07-25T07:06:24.000Z","dependencies_parsed_at":"2023-09-05T02:15:36.266Z","dependency_job_id":null,"html_url":"https://github.com/kcartlidge/CommitList","commit_stats":null,"previous_names":["kcartlidge/commitlist"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kcartlidge%2FCommitList","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kcartlidge%2FCommitList/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kcartlidge%2FCommitList/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kcartlidge%2FCommitList/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kcartlidge","download_url":"https://codeload.github.com/kcartlidge/CommitList/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246792391,"owners_count":20834920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commit","git","history"],"created_at":"2024-12-15T01:43:44.660Z","updated_at":"2026-04-28T08:32:25.987Z","avatar_url":"https://github.com/kcartlidge.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Commit List\n\n- Do you work on multiple projects?\n- Sometimes forget what stuff you've done?\n- Need a quick summary of recent commits?\n\nUse *Commit List* to get a nice readable commit summary for multiple repos over\nthe last *x* number of days, optionally filtered by author.\n\n## Contents\n\n- [Installing](#installing)\n- [Running](#running)\n- [Sample output](#sample-output)\n- [Generating new builds](#generating-new-builds)\n- [CHANGELOG](./CHANGELOG.md)\n- [LICENSE](./LICENSE)\n\n## Installing\n\n*Commit List* is a single file tool. You do not need to run an installer.\nThere are [pre-built executables in the builds folder](./builds) for *Windows*, *Mac OS*, and *Linux*.\n\nThat said, you may prefer to place it somewhere more convenient than the\nfolder you downloaded it to. Here's a couple of examples for Linux/MacOS.\n*In Windows* you could use Windows Explorer to move it into a folder that\nis in your `path` using copy/paste.\n\nLinux/MacOS example for copying the relevant build into your home folder:\n\n```sh\n# copy\ncd \u003csolution\u003e\ncp builds/macos-arm64/CommitList ~\n\n# run\ncd \u003cwherever\u003e\n~/CommitList\n```\n\nLinux/MacOS example for creating a link in a folder that is in your path, making it\navailable everywhere in your Terminal:\n\n```sh\n# link\ncd \u003csolution\u003e\nsudo ln $(pwd)/builds/macos-arm64/CommitList /usr/local/bin\nwhich CommitList\n\n# run\ncd \u003cwherever\u003e\nCommitList\n```\n\n## Running\n\n```sh\nCommitList [-days=\u003cdays\u003e] [-author=\u003cauthor\u003e] [--deep] [--showcommand] \u003cfolder\u003e\n```\n\n- *days* - inclusive number of previous days to show (defaults to yesterday)\n- *author* - match part of the committer name\n- *deep* - check within subfolders of non-repos\n- *showcommand* - show the 'git log' command used\n- *folder* - the parent folder holding your projects\n\nExample:\n\n```sh\nCommitList -days=5 -author=cartlidge --deep --showcommand ~/Source\n```\n\nYou'll get a simple status message for each subfolder which contains a `.git` repository.\nSubmodules are not listed, though if you specify `--deep` then any folder which\n*isn't in itself a git repo* will have it's subfolders scanned (recursing downwards).\nIn effect it will spider down your folder tree, stopping each branch when it reaches a repo.\n\n```\n/Source       # not a repo; scan subfolders\n  /Core       # not a repo; scan subfolders\n    /MyApp    # repo; list matching commits, ignore subfolders\n    /MySite   # repo; list matching commits, ignore subfolders\n  /Go         # not a repo; scan subfolders\n    /MyTool   # repo; list matching commits, ignore subfolders\n```\n\n## Sample output\n\n```\nSince yesterday\nScanning /Users/kcartlidge/Documents/Source (deep)\n\napp\nad144ce  24-Jul  K Cartlidge  Support NODE_ENV switching and uvu tests\n\nProjectOne\nb5a19ec  16-Jul  K Cartlidge  Mention where to get the release builds\ndf98d1a  16-Jul  K Cartlidge  Support specifying max commit age in days\ne3016bb  15-Jul  K Cartlidge  Add executables and update the readme\n5ca0385  15-Jul  K Cartlidge  Add git log output parsing and display\ncc0afda  15-Jul  K Cartlidge  Scan for subfolders of the provided folder\n```\n\n## Generating new builds\n\n*For CommitList *developers* only.*\n\nUpdate the `CHANGELOG.md` file and the version number in `Program.cs`.\nNavigate to the top folder (the one containing this `README.md` file).\nNow run the relevant script file from the two below, according to *your* platform.\nEach will then create new builds for *all* the supported platforms.\n\n### MacOS and Linux\n\n```sh\ncd \u003csolution\u003e\n./make.sh\n```\n\n### Windows\n\n```batch\ncd \u003csolution\u003e\nmake.bat\n```\n\nWhen run from the top folder, the builds will automatically go into\nthe `builds` subfolders as they are generated.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkcartlidge%2Fcommitlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkcartlidge%2Fcommitlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkcartlidge%2Fcommitlist/lists"}