sobolevn/git-secret

:busts_in_silhouette: A bash-tool to store your private data inside a git repository.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 20 minutes ago
Added to GitGenius on September 17th, 2026
Created on February 15th, 2016
Open Issues & Pull Requests: 153 (+0)
GitHub issues: Enabled
Number of forks: 212
Total Stargazers: 4,045 (+0)
Total Subscribers: 30 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 29.7 days
Mean response time: 55.6 days
90th percentile: 142.7 days
Tracked items: 169

Most active contributors

Sign in to see contributor activity.

How this project is maintained

About 4% of issues opened in the past year have never received a reply. 96% of issues opened in the past year have since been closed. Three people close 99% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 8
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 779 days
Stale 30+ days: 8
Stale 90+ days: 8

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (2)
  • help wanted (2)
  • documentation (1)
  • enhancement (1)

Detailed Description

git-secret is a bash tool for encrypting and storing sensitive data within a git repository.

The tool solves the problem of safely committing secrets to version control by using GPG encryption. It works by allowing developers to designate files containing sensitive information, which are then encrypted before being added to the repository. Only team members whose GPG keys are registered with the project can decrypt these files, ensuring that secrets remain protected even when the repository is shared or made public. The encrypted versions of secret files are tracked in git while the plaintext originals are kept local and excluded from commits.

The tool suits teams that need to share configuration secrets, API keys, or credentials through git without exposing them in plaintext. It works best for projects where all team members already use or are willing to adopt GPG for key management. git-secret integrates directly into the git workflow through custom commands, making it practical for developers who want encryption without introducing a separate secrets management system. It is particularly valuable for smaller teams or projects where a dedicated secrets vault may be overkill, though it requires that team members maintain their GPG keys and understand basic encryption concepts.

The project shows consistent maintenance with regular updates addressing user-reported issues and feature requests. Development activity includes ongoing refinement of the bash implementation and expansion of documentation to clarify usage patterns. The maintainers actively engage with the community through issue responses and incorporate feedback into releases. The codebase demonstrates attention to edge cases and compatibility across different environments, with fixes applied to handle various shell behaviors and git configurations.