Skip to content

Instantly share code, notes, and snippets.

@wwalker
Forked from marceloalmeida/.gitattributes
Created October 11, 2019 16:31
Show Gist options
  • Save wwalker/e5285c67cd1f80ea2624dbee2b6b986f to your computer and use it in GitHub Desktop.
Save wwalker/e5285c67cd1f80ea2624dbee2b6b986f to your computer and use it in GitHub Desktop.
How to show diffs for gpg-encrypted files?
*.gpg filter=gpg diff=gpg
*.asc filter=gpg diff=gpg

How to show diffs for gpg-encrypted files?

Git supports showing diffs for encrypted files, but has to be told to do so.

git config --global diff.gpg.textconv "gpg --no-tty --decrypt"
echo "*.gpg filter=gpg diff=gpg" >> .gitattributes
echo "*.asc filter=gpg diff=gpg" >> .gitattributes

or

curl -sL https://gist.github.com/marcelosousaalmeida/e6593b93b388cdf1dbc282dffd424d1b/raw/.gitattributes -o .gitattributes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment