{"id":20694749,"url":"https://github.com/annurdien/git-cheater","last_synced_at":"2026-04-18T21:02:26.235Z","repository":{"id":57097854,"uuid":"454132561","full_name":"annurdien/git-cheater","owner":"annurdien","description":"Github fake commit generator, for fun only","archived":false,"fork":false,"pushed_at":"2022-01-31T20:28:04.000Z","size":5,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-19T17:28:06.339Z","etag":null,"topics":["fake-commit","github"],"latest_commit_sha":null,"homepage":"","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/annurdien.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}},"created_at":"2022-01-31T19:00:01.000Z","updated_at":"2025-11-17T17:25:45.000Z","dependencies_parsed_at":"2022-08-20T18:10:22.816Z","dependency_job_id":null,"html_url":"https://github.com/annurdien/git-cheater","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/annurdien/git-cheater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/annurdien%2Fgit-cheater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/annurdien%2Fgit-cheater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/annurdien%2Fgit-cheater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/annurdien%2Fgit-cheater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/annurdien","download_url":"https://codeload.github.com/annurdien/git-cheater/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/annurdien%2Fgit-cheater/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31984557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"ssl_error","status_checked_at":"2026-04-18T20:23:29.375Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["fake-commit","github"],"created_at":"2024-11-17T00:06:21.444Z","updated_at":"2026-04-18T21:02:26.187Z","avatar_url":"https://github.com/annurdien.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github Cheat - Commits Generator\r\n\r\nA command-line tool to generate your GitHub activity graph.\r\n\r\n\u003ca href=\"https://trakteer.id/annurdien\" target=\"_blank\"\u003e\u003cimg id=\"wse-buttons-preview\" src=\"https://cdn.trakteer.id/images/embed/trbtn-red-1.png\" height=\"40\" style=\"border:0px;height:40px;\" alt=\"Trakteer Saya\"\u003e\u003c/a\u003e\r\n\r\nAre you lazy? but you wanna show off your coding skill's to your friends and family? This tool will help you.\r\n\r\n\u003cimg src=\"https://dl.dropboxusercontent.com/s/q2iinti6v0zbhzs/contributions.gif?dl=0\" alt=\"How it works\" /\u003e\r\n\r\n## How To Use\r\n\r\n1. Make sure you have [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and \r\n   [Node.js](https://nodejs.org/en/download/) installed on your machine.\r\n3. Generate your commits:\r\n   ```shell script\r\n   npx git-cheater\r\n   ```\r\n   It will create `cheat-folder` folder, initialize git and generate commits for every day within the last year (0-3 commits per day).\r\n4. Create [a private repository](https://github.com/new) in your GitHub called `cheat-folder`\r\n   and push the changes:\r\n   ```shell script \r\n   cd cheat-folder\r\n   git remote add origin git@github.com:\u003cUSERNAME\u003e/cheat-folder.git \r\n   git push -u origin master\r\n   ```\r\n\r\nDone! Go take a look at your GitHub profile 😉\r\n\r\n## Customizations\r\n\r\n### `--commitsPerDay`\r\n\r\nSpecify how many commits should be created for every single day.\r\nDefault is `0,3` which means it will randomly make from 0 to 3 commits a day. Example:\r\n\r\n```shell script\r\nnpx git-cheater --commitsPerDay \"0,5\"\r\n```\r\n\r\n### `--weekdaysOnly`\r\n\r\nUse it if you don't want to commit on weekends. Example:\r\n\r\n```shell script\r\nnpx git-cheater --weekdaysOnly\r\n```\r\n\r\n### `--startDate` and `--endDate`\r\n\r\nBy default, the script generates GitHub commits for every day within the last year.\r\nIf you want to generate activity for a specific dates, then use these options:\r\n\r\n```shell script\r\nnpx git-cheater --startDate \"2020/09/01\" --endDate \"2020/09/30\"\r\n```\r\n\r\n### `--resume`\r\n\r\nBy default, the script will create new local Git directory and delete any previous folder.\r\nIf you don't want to delete previous and just want to add new commit, then use these options:\r\n\r\n```shell script\r\nnpx git-cheater --startDate \"2020/10/01\" --endDate \"2020/12/30\" --resume\r\n```\r\n\r\n# More\r\n\r\n### `--help`\r\n\r\nSee full documentation\r\n```shell script\r\nnpx git-cheater --help\r\n```\r\n\r\n## PS \r\n\r\nIt is something I wrote as a joke, so don't take it seriousely. I'm not encourage you to cheat, but I think green graph is so satisfying to watch 🤓\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannurdien%2Fgit-cheater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fannurdien%2Fgit-cheater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannurdien%2Fgit-cheater/lists"}