Contribute to any GitHub repo without leaving a trace.
Zero accounts • Zero tokens • Zero metadata • Designed for strong anonymity
# Add as remote → fix → push → done. Fully anonymous.
git remote add gost https://gitgost.leapcell.app/v1/gh/torvalds/linux
git checkout -b fix-typo
git commit -am "fix: obvious typo in README"
git push gost fix-typo:main
# → PR opened as @gitgost-anonymous with zero trace to youThat’s it. No login. No token. No name. No email. No history.
| Feature | Description |
|---|---|
| Total Anonymity | Strips author name, email, timestamps, and all identifying metadata. PRs created by neutral @gitgost-anonymous bot. |
| One-Command Setup | Just git remote add gost <url> – no accounts, tokens, or browser extensions. |
| Battle-tested Security | Rate limiting, repository size caps, commit validation. Written in pure Go with minimal dependencies – fully auditable. |
| Works Everywhere | Terminal, CI/CD, Docker, scripts – any public GitHub repo, anywhere Git runs. |
| Open Source & AGPL | 100% transparent. Fork it, audit it, host it yourself. |
To signal that your repository welcomes anonymous contributions via gitGost, add this badge to your README:
For verified repositories, add a .gitgost.yml file to your repository root and use the dynamic version:
This badge helps contributors know that anonymous contributions are accepted and encouraged.
“Your commit history shouldn’t be an HR liability forever.”
- No permanent public record of your activity
- Safely contribute to controversial projects (employer or country doesn’t like it? no problem)
- Stop email harvesting & doxxing from public commits
- Fix that one annoying typo without attaching your name for eternity
- Be a ghost when you want to be
Built for developers who actually care about privacy.
gitGost is designed to protect against common identification threats in contributions to public repos, but does not offer perfect anonymity. Below details what it protects against, what it does not, who it protects against, and key assumptions.
- Public exposure of name and email in commits
- Direct association between personal GitHub account and PR
- Passive metadata collection in public repos
- Permanent history of minor contributions
- IP identification (using VPN/Tor is recommended)
- Code style analysis (stylometry)
- Advanced temporal correlation
- Targeted deanonymization by adversaries with resources
- Recruiters / HR
- Hostile maintainers
- Email scrapers
- Governments or companies with basic monitoring
- Nation states with infrastructure access
- Actors with active user surveillance
- Deep forensic code style analysis
gitGost assumes the user:
- Uses a trustworthy network (VPN / Tor)
- Does not reuse unique phrases or identifiable style
- Does not mix anonymous and personal contributions to the same repo
- Understands that perfect anonymity does not exist
For more details, see SECURITY.md.
gitGost requires a GitHub personal access token to create PRs. You can optionally configure Supabase for persistent statistics.
Create a personal access token with repo permissions:
- Go to GitHub Settings > Developer settings > Personal access tokens
- Click "Generate new token (classic)"
- Select scopes:
repo(full control of private repositories) - Copy the token
Copy .env.example to .env and configure:
cp .env.example .env
# Edit .env with your actual valuesRequired:
GITHUB_TOKEN=your_github_token_here
Optional (for persistent stats):
SUPABASE_URL=https://your-project.supabase.coSUPABASE_KEY=your_supabase_key_here
If you want persistent statistics instead of in-memory only:
- Create a Supabase account
- Create a new project in Central Europe (Zurich)
- Go to SQL Editor and run the schema from
database/schema.sql - Copy URL and anon key to your
.env
# 1. Add the remote (replace with any public repo)
git remote add gost https://gitgost.leapcell.app/v1/gh/username/repo
# 2. Create your branch and commit with a detailed message
git checkout -b my-cool-fix
git commit -am "fix: typo in documentation
This commit fixes a grammatical error in the README.
The word 'recieve' should be 'receive'."
# 3. Push – PR opens anonymously
git push gost my-cool-fix:mainDone. The PR appears instantly from @gitgost-anonymous with your commit message as the PR description.
Pro tip: Write detailed commit messages! Your commit message becomes the PR description, allowing you to provide context while staying anonymous.
- Max 5 PRs/IP/hour
- Repository size ≤ 500 MB
- Commit size ≤ 10 MB
- Full validation of refs and objects
- No persistence of your data
Everything is designed to prevent abuse while keeping you anonymous.
AGPL-3.0 – Free forever, open source, and copyleft.
If you run a public instance, you must provide source code.
→ LICENSE
git remote add gost https://gitgost.leapcell.app/v1/gh/livrasand/gitGost
git push gost my-feature:main(Yes, even gitGost eats its own dogfood đź‘»)
Star this repo if you believe developers deserve the right to contribute anonymously.
github.com/livrasand/gitGost
Be a ghost. Fix the internet.
✨ Thanks for visiting gitGost!