{"id":16966138,"url":"https://github.com/samirhodzic/git-done-maybe","last_synced_at":"2025-04-11T23:23:24.180Z","repository":{"id":82866464,"uuid":"109511556","full_name":"SamirHodzic/git-done-maybe","owner":"SamirHodzic","description":"What you did on the last working day ..or what someone else did.","archived":false,"fork":false,"pushed_at":"2017-11-21T20:58:40.000Z","size":13,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-10T02:58:46.644Z","etag":null,"topics":["done-maybe","git","git-log","javascript","js","npm-module"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SamirHodzic.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2017-11-04T16:34:46.000Z","updated_at":"2019-12-25T14:36:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee64ce71-9da4-4afc-87cb-b6fc9b5e05e2","html_url":"https://github.com/SamirHodzic/git-done-maybe","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"6a2d4a2344aec4aecd8cb57bccd1b8842d219018"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamirHodzic%2Fgit-done-maybe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamirHodzic%2Fgit-done-maybe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamirHodzic%2Fgit-done-maybe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamirHodzic%2Fgit-done-maybe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SamirHodzic","download_url":"https://codeload.github.com/SamirHodzic/git-done-maybe/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248493525,"owners_count":21113274,"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":["done-maybe","git","git-log","javascript","js","npm-module"],"created_at":"2024-10-14T00:04:45.926Z","updated_at":"2025-04-11T23:23:24.143Z","avatar_url":"https://github.com/SamirHodzic.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-done-maybe\n\n\u003e What you did on the last working day ..or what someone else did.\n\u003e Inspired by [git-standup](https://github.com/kamranahmedse/git-standup) and need to have compact multiple repo access.\n\n[![npm-url][npm-url-svg]][npm-url]\n\n![git done-maybe](http://i.imgur.com/6ZQkZLQ.gif)\n\n## Install\n\nTo install git-done-maybe library via npm\n\n```bash\n$ npm install -g git-done-maybe\n```\n\n## Usage\n\n```bash\n$ git done-maybe [--a=\u003cauthor name\u003e] \n                 [--d=\u003cdays-ago\u003e] \n                 [--df=\u003cdate-format\u003e] \n                 [--m] \n                 [--f] \n                 [--s]\n                 [--r]\n                 [--h]\n```\n\nBelow is the description for each of the flags\n\n- `--a`        - Specify author to restrict search to (if not specified, will return all contributors)\n- `--d`        - Specify the number of days back to include (default: 1)\n- `--df`       - Specify the date format for \"git log\" (default: relative, options: local|default|iso|iso-strict|rfc|short|raw)\n- `--m`        - Specify the multiple git projects search in target directory\n- `--f`        - Fetch the latest commits beforehand\n- `--s`        - Display stats for the commits (files changed, insertions, deletions)\n- `--r`        - Export report for current logs to file\n- `--h`        - Display the help screen\n\nFor the basic usage, all you have to do is run `git done-maybe` in a repository.\n\n### Single Repository\n\nTo check all commits from last working day, head to the project repository and run\n\n```bash\n$ git done-maybe\n```\n\n### Multiple Repository\nOpen a directory having multiple repositories and run\n\n```bash\n$ git done-maybe --m\n```\n\nThis will show you all commits since the last working day in all the repositories inside.\n\n### Checking commits for specific contributor\n\nIf you want to find out someone else's commits\n\n```bash\n# If their name on git is \"Charles Lee\"\n$ git done-maybe --a=\"Charles Lee\"\n\n# Or if their email on git is \"charles@something.com\"\n$ git done-maybe --a=\"charles@something.com\"\n```\n\n### Commits from `n` days ago\n\nIf you would like to show all your/someone else's commits from `n` days ago\n\n```bash\n# Show all commits from 7 days ago\n$ git done-maybe --d=7\n\n# Show all Charles Lee's commits from 7 days ago\n$ git done-maybe --a=\"Charles Lee\" --d=7\n```\n\n### Specifying the output date format\n\nAdd `--df` flag to specify the date format (default: `relative`)\n\n```bash\n$ git done-maybe --df=iso\n# Available relative|local|default|iso|iso-strict|rfc|short|raw\n```\n\n### Fetch latest commits before showing result\n\nIf you would like to automatically run `git fetch --all` before printing the result, you can add the `--f` flag\n\n```bash\n$ git done-maybe --f\n```\n\n### Show statistics for all commits\n\nIf you would like to show how many files are changed (with insertions/deletions) per commit, you can add the `--s` flag\n\n```bash\n$ git done-maybe --s\n```\n\n### Export report for all commits\n\nIf you would like to export report to specific file after printing the results, you can add the `--r` flag\n\n```bash\n$ git done-maybe --r\n# You will be prompted to enter name for report file\n```\n\n## License\n\nMIT\n\n[npm-url-svg]: https://img.shields.io/npm/v/git-done-maybe.svg\n[npm-url]: https://www.npmjs.com/package/git-done-maybe\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamirhodzic%2Fgit-done-maybe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamirhodzic%2Fgit-done-maybe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamirhodzic%2Fgit-done-maybe/lists"}