git-secret
git-secret copied to clipboard
:busts_in_silhouette: A bash-tool to store your private data inside a git repository.
in `src/_utils/_git_secret_tools.sh` we pass the passphrase to gnupg using 'echo', which means it could be visible to other users using `ps`. Can we improve this situation? See https://github.com/sobolevn/git-secret/blob/master/src/_utils/_git_secret_tools.sh#L815 EDIT: this...
We have automated _testing_ on `arch`, now let's automate building `git-secret` package for `arch`. See notes in #785
as of Jan 2022, git-secret is at older versions (not the current 0.4.0) in some distributions, including: * debian 12/unstable * EPEL 8 (0.3.3) * FreeBSD Ports * Ubuntu 22.04...
What are the steps to reproduce this issue? ------------------------------------------- 1. Set Git to print non-ASCII file names in quoted octal notation: `$ git config --global core.quotepath on` 1. Create a...
It is possible to configure standard `git` commands to use custom plugin's logic. We need a note in the docs about that.
The documentation notes > Note that it is possible to add yourself to the git-secret repo without decrypting existing files. It will be possible to decrypt them after re-encrypting them...
It would be great to include an example of how to secure the `gpg` keyring with a `pre-receive` hook and prevent people from adding public keys to the `git-secret` repo....
**Issue** With git-secret files are encrypted which will prevent access to their content. However files are not signed. Since public keys are embedded in the git project, it's easy for...
Update: Consider Test2::Aggregate Currently, running the whole test suite with `make test` runs about 116 tests and generally takes over 60 seconds, which can feel slow. It'd be nice to...
I am using an encrypted `README.md` file (added via `git secret add README.md`) in a repository. I have two workstations and I cloned the repository on both machines. When I...