A tool that allows you to encrypt files in your git repository.
Add an .npmrc file to your project where you want to install git-encrypt:
# .npmrc
@stadro:registry=https://npm.pkg.github.comInstall locally:
$ yarn add @stadro/git-encryptInstall globally:
$ yarn global install @stadro/git-encryptInstall all the packages of needed to run git-encrypt:
yarn installFor local development you can run:
yarn dev <args>To install git-encrypt globally for development you can run:
# Linux
$ yarn i
# Windows
$ yarn i:winTo initialize git-encrypt in a git repository run:
# Install git hooks, generate a key and display it to the user.
# git-encrypt will now automatically encrypt files on git commit.
# git-encrypt will also automatically decrypt files on git pull.
$ git-encrypt initIf you already have a key, you can provide that key to the init command:
# Install git hooks and store the provided key
$ git-encrypt init --key <key>Because encrypted files must be ignored, you can add all the files you want to encrypt to your .gitignore file. To make sure git-encrypt knows which files to encrypt make sure to surround those files with #start:enc and #end:enc.
# .gitignore
#start:enc
secret.txt
#end:encTo encrypt or decrypt files manually, you can run:
$ git-encrypt encrypt --key <key>
$ git-encrypt decrypt --key <key>To generate a key manually, you can run:
$ git-encrypt generateTo view or set the current key, you can run:
# You can also set a new key if you provide --key <key>
$ git-encrypt key