https://github.com/bdrupieski/githubprofiledefacer
make fake git commits in the shape of a pattern on your GitHub contributions graph
https://github.com/bdrupieski/githubprofiledefacer
csharp git github libgit2sharp markov-model
Last synced: 6 months ago
JSON representation
make fake git commits in the shape of a pattern on your GitHub contributions graph
- Host: GitHub
- URL: https://github.com/bdrupieski/githubprofiledefacer
- Owner: bdrupieski
- Created: 2013-11-25T01:16:46.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-10-01T18:22:09.000Z (over 8 years ago)
- Last Synced: 2025-07-19T18:21:48.083Z (6 months ago)
- Topics: csharp, git, github, libgit2sharp, markov-model
- Language: C#
- Homepage:
- Size: 4.25 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
There are two projects in this solution.
**GitHubProfileDefacer** makes fake
commits to a git repository following the
pattern specified in the file "pattern.txt".
The letter X is a placeholder and is ignored.
It can turn this:
```
XXXXXXXXXXXXXXXXXXXXX
XX.XXXXXXX.X...XXXXXX
XX.XXX.XXXXXXX.X.XXXX
XX...X...X.X...X...XX
XX.X.X.XXX.X.X.X.X.XX
XX...X.XXX.X...X.X.XX
XXXXXXXXXXXXXXXXXXXXX
```
Into this:

There are other projects that can also do this,
like [gitfiti](https://github.com/gelstudios/gitfiti).
**GenerateFakeCommitMessages** builds fake commit
messages using a Markov Model trained on real commit
messages. It uses the GitHub API to pull down all
commit messages for the most starred 1,000 repositories
for a few different languages and then generates
probable commit messages based on the Markov Model
built using a given language's sample commit messages.
I wrote a blog post about generating the commit messages
[here](http://blog.briandrupieski.com/github-commit-messages-markov-chains).
There are sample messages for different languages in the post.