git-crypt
git-crypt copied to clipboard
Transparent file encryption in git
I have used git-crypt to encrypt my Obsidian vault on Ubuntu. When trying to decrypt on Windows, I get: ```PS C:\DevGit\obsidian-vault\obsidian-vault> git-crypt unlock ../obsidian-git-key git-crypt: System error: CreateFileA: personal/Spaces/┼╜ivot/Areas/Aktivity/Place/Place aktivity...
Hello All. I hope you don't mind, but I decided to revamp the README.md. After trying to use git-crypt (which is a great product, and thank you!), I found that...
- add 'utf8_to_gb' func into commands.cpp ``` static std::string utf8_to_gb(const char* str) { std::string result; WCHAR* strSrc; LPSTR szRes; int i = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0); strSrc =...
I've been using this for a few years, so I am surprised to only come across this problem now - you cannot seem to `git add -p` to stage parts...
I was trying to build git-crypt with OpenSSL 3.1.0 on Alpine 3.18. Steps to reproduce: 1. Create Dockerfile: ``` FROM alpine:3.18 ARG VERSION=0.7.0 RUN apk --no-cache add \ bash \...
Having `git crypt export` produce ASCII keys (eg. with base64) would help in the managing and sharing of keys, as one could store/transmit them them as text without worries (eg....
[https://github.com/ninetynin/temp-test-repo/actions/runs/4774573308/jobs/8488344079](url) ``` Run git-crypt unlock git-crypt: Error: Unable to open key file - have you unlocked/initialized this repository yet? error: external filter '"git-crypt" clean' failed [1](https://github.com/ninetynin/temp-test-repo/actions/runs/4774573308/jobs/8488344079#step:10:1) error: external filter '"git-crypt"...
This PR bumps some outdated reusable actions in build workflows to `actions/checkout@v3` and `actions/github-script@v6`, to solve the warnings of deprecations. However currently the windows build workflow will fail, since the...
Got this error message: ``` This version of C:\Users\me\.bin\git-crypt.exe is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher....
I'm trying to build a statically-linked binary as I have that I cannot use git-crypt on Oracle Linux 9.1 (and I have become pretty dependent on it). I add the...