Skip to content

Instantly share code, notes, and snippets.

@bartv2
Created March 11, 2020 10:38
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bartv2/7e1c127d6af397bc0e4da6d11fb7ea6c to your computer and use it in GitHub Desktop.
Save bartv2/7e1c127d6af397bc0e4da6d11fb7ea6c to your computer and use it in GitHub Desktop.
#!/bin/bash
# Unlock the directory, we need the unencrypted versions of the files
git crypt unlock
# Re-initialize git crypt, generating a new key
rm .git/git-crypt/keys/default
git crypt init
# Make the key available to the current users
KEY_FILES=`ls .git-crypt/keys/default/0/`
for f in $KEY_FILES; do
gpg -e --always-trust -r ${f%.gpg} < .git/git-crypt/keys/default > .git-crypt/keys/default/0/$f
done
# Re-encrypt the files with the new key
ENCRYPTED_FILES=`git crypt status -e | colrm 1 14`
git rm --cached $ENCRYPTED_FILES
git add $ENCRYPTED_FILES
@thomsh
Copy link

thomsh commented Mar 11, 2020

Thx, look simple I give it a try next time

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment