{"id":17749451,"url":"https://github.com/oresoftware/fame","last_synced_at":"2025-04-01T14:32:10.440Z","repository":{"id":57134195,"uuid":"129798760","full_name":"ORESoftware/fame","owner":"ORESoftware","description":"Command line tool to display git log information by user/commiter. :tickets: ","archived":false,"fork":false,"pushed_at":"2019-10-25T02:22:57.000Z","size":325,"stargazers_count":14,"open_issues_count":2,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-28T18:08:55.903Z","etag":null,"topics":["cli-table","command-line","command-line-tool","git","git-log","json","nodejs","npm"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/ORESoftware.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-16T20:03:44.000Z","updated_at":"2024-05-25T14:15:30.000Z","dependencies_parsed_at":"2022-09-04T07:23:29.639Z","dependency_job_id":null,"html_url":"https://github.com/ORESoftware/fame","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORESoftware%2Ffame","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORESoftware%2Ffame/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORESoftware%2Ffame/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ORESoftware%2Ffame/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ORESoftware","download_url":"https://codeload.github.com/ORESoftware/fame/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246604610,"owners_count":20804100,"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":["cli-table","command-line","command-line-tool","git","git-log","json","nodejs","npm"],"created_at":"2024-10-26T11:23:22.414Z","updated_at":"2025-04-01T14:32:10.084Z","avatar_url":"https://github.com/ORESoftware.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n## 🎟 Fame - a tool for displaying git log information by author\n\n```diff\n- Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame Fame\n```\n\nThis command line tool is similar to `git fame`, but this is \u003ci\u003emuch\u003c/i\u003e faster.\nPeople were complaining that the ruby/python tools were too slow, so I wrote this.\n\n## \u003ci\u003eInstallation\u003c/i\u003e\n\n```bash\n$ npm install -g fame\n```\n\n\u003e For latest version, use: `npm view fame version`\n\n-----\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n\u003ckbd\u003e\n \u003cimg src=\"https://raw.githubusercontent.com/oresoftware/fame/master/media/big.png\"\u003e\n\u003c/kbd\u003e\n\n\n\u003cbr\u003e\n\n----\n\n\u003cbr\u003e\n\n## \u003ci\u003eBasic Usage\u003c/i\u003e\n\nBy default, a table is printed to the console. If you want JSON output, use the --json flag.\n\n```bash\nfame --json\n```\n\n### Info for all commits by \"alex\"  \n\n```bash\nfame --author=alex\n```\n\n### Info for all commits on dev branch by a particular author\n\n```bash\nfame --branch=dev --author=alex\n```\n\n### Info for all commits for multiple authors\n\n```bash\nfame --author=donnie --author=ronnie --author=jonnie\n```\n\n-----\n\n### More options\n\n\u003cdetails\u003e\n\u003csummary class=\"text-primary mb-3\"\u003eHandling multiple email addresses for same person.\u003c/summary\u003e\n\n```shell\nfame --add-user \u003cdisplay name\u003e -e \u003cemail\u003e \n```\n\nnow, when fame runs at the command line, it will pick up the info from this file ($HOME/fame.conf.json), \nto combine info from the different emails.\n\nYou can add multiple emails like so:\n\n```shell\nfame -u \u003cdisplay name\u003e -e \u003cemail\u003e -e \u003cemail\u003e \n```\n\n\u003c/details\u003e\n\n\u003cbr\u003e\n\n\u003cdetails\u003e\n\u003csummary class=\"text-primary mb-3\"\u003eSorting with --order and --sort options\u003c/summary\u003e\n\n\u003cbr\u003e\n\nYou can sort using the --sort and --order options.\n\nFor example:\n\n```bash\n\nfame --sort=1 --order=asc  # will sort by the the 2nd column, ascending\nfame --sort=2,3 --order=desc  # will sort by the the 3rd and 4th column, with the 3rd column the priority\n\n```\n\nOr for example, instead of numbers you can also just use the name (case-insensitive) of the column:\n\n```bash\n\nfame --sort='added lines, files modified' --order=asc\n\n```\n\nComma-separated list, case-insensitive and whitespace-insensitive\n\n\u003c/details\u003e\n\n\u003cbr\u003e\n\n\u003cdetails\u003e\n\u003csummary class=\"text-primary mb-3\"\u003eMatching on files (ignoring files too)\u003c/summary\u003e\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n### Info for all matching files\n\n```bash\nfame --match='\\.js'\n```\n-----\n\n\u003cbr\u003e\n\n### Info for all files that end with\n\n```bash\nfame --extension='.js'  # better to just use the regex option tho\n```\n\n----\n\n### Example\n\nTo match all .ts files but no .d.ts files, you would do:\n\n```bash\nfame --match='\\.ts$'  --not-match='\\.d\\.ts$'\n\n```\n\nRemember these strings are passed to `new RegExp()` so have to escpae the . etc.\n\n\u003c/details\u003e\n\n\n\u003cbr\u003e\n\n## Basic command line table output looks like this:\n\n\u003ckbd\u003e\n \u003cimage src=\"https://raw.githubusercontent.com/oresoftware/fame/master/media/fame.png\"\u003e\n\u003c/kbd\u003e\n\n\n## Command line JSON output looks like this:\n\n\u003ckbd\u003e\n \u003cimage src=\"https://raw.githubusercontent.com/oresoftware/fame/master/media/fame-json.png\"\u003e\n\u003c/kbd\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foresoftware%2Ffame","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foresoftware%2Ffame","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foresoftware%2Ffame/lists"}