git-beautify
v0.0.1
Published
A command-line tool to generate your GitHub activity graph.
Downloads
68
Maintainers
Readme
Customizations
--commitsPerDay
Specify the number of commits to be created for each day.
The default value is 0,3
, which means it will randomly generate from 0 to 3 commits per day. For example, to generate commits randomly between 0 and 5 per day, you can do:
npx fake-git-history --commitsPerDay "0,5"
--workdaysOnly
Use this option if you don't want to commit on weekends. Example:
npx fake-git-history --workdaysOnly
--startDate
and --endDate
By default, the script generates GitHub commits for every day within the last year. However, if you want to generate activity for specific dates, use these options:
npx fake-git-history --startDate "2020/09/01" --endDate "2020/09/30"