git-crypt
git-crypt copied to clipboard
Transparent file encryption in git
This is a very basic modification I made to support encryption using any subkey, as opposed to the main/latest one. Follow the usual gpg syntax of forcing the desired key...
I find that I'm wondering, "is my git-crypt repository locked, or unlocked?" Sometimes, I cannot remember. Then have to go poking in files to see... unless there is some easier...
hi there, I'm completely new to git-crypt. I read an article about this git-crypt and I have a question. Suppose I use git-crypt to encrypt a `.env` file for production...
I encountered some compilation errors with the latest "windows" branch from unreleased git-crypt v0.4. It happens when I updated my forked repo with commit 19ea278a31e58dc99da2301a08d2322fdabd0bf9 (2014-06-03). So I've made some...
Unfortunately, there is no [MacPorts](https://www.macports.org/) support for `git-crypt` yet. To compile nuder MacPorts with OpenSSL support: ``` git clone https://github.com/AGWA/git-crypt.git cd git-crypt export CPPFLAGS="-I/opt/local/libexec/openssl11/include -I/opt/local/include" make make install PREFIX=$HOME/Programs ```...
git-crypt is made for encrypting sensitive files before they are pushed to a (possibly) public Git repository. However, when following the guide in the README exactly, there is no feedback...
git-crypt 1c905faeb595f5a64d460c923ec3401cd37b5acc fails to build with openssl 3.0.0 as OPENSSL_API_COMPAT is not defined since [1]. Same result with tag 0.6.0 546664f152ec0441dd46700eb06e63a0414ec877. This causes the 1.0 code to be used which...
Fix the following build failure with libressl >= 3.5.0: ``` crypto-openssl-10.cpp:78:18: error: field 'ctx' has incomplete type 'HMAC_CTX' {aka 'hmac_ctx_st'} 78 | HMAC_CTX ctx; | ^~~ ``` Fixes: - http://autobuild.buildroot.org/results/98747d470c2ad59280934e160d24bd3fdad1503c...
Hi, I have been looking for ways to automate the process of unlocking encrypted files during the deployment process on Windows Hosts. I can do it manually, but ofcourse a...
Is it feasible to introduce a new command ``` git-crypt list-gpg-user ``` to list all added gpg users? Are there alternatives to show that info with the existing implementation?