logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git Secret - Securely Store Data in Git | Online Free DevTools by Hexmos

Secure data storage with Git Secret. Encrypt and manage sensitive information directly within your Git repositories. Free online tool, no registration required.

git-secret

Stores private data inside a Git repository. Written in Bash. More information: https://github.com/sobolevn/git-secret.

  • Initialize git-secret in a local repository:

git secret init

  • Grant access to the current Git user’s email:

git secret tell -m

  • Grant access by email:

git secret tell {{email}}

  • Revoke access by email:

git secret killperson {{email}}

  • List emails with access to secrets:

git secret whoknows

  • Register a secret file:

git secret add {{path/to/file}}

  • Encrypt secrets:

git secret hide

  • Decrypt secret files:

git secret reveal

See Also