Getting started
Install hooks
To install the necessary in your Git config run the following command:
git age install
This will add the git-age clean and smudge filters to your Git config.
Init a repository to share secret files
git age init
# or if you want to add some comment to the generated key
git age init -c "My comment"
Add another user to an already initialized repository
Remarks: The repository has to be in a clean state i.e. no changes files.
Alice wants to share the secrets stored in her Git repository with Bob:
- Bob installs git-age on his machine and configures his global git config
git age install
- Bob generates a new key pair
the generated private key will be stored automatically in your
git age gen-key # or if you want to add some comment to the generated key git age gen-key -c "My comment"
keys.txt
- Bob sends his public key to Alice
- Alice adds Bob's public key to her repository
git age add-recipient <public key> # or if you want to add some comment to the added key git age add-recipient -c "My comment" <public key>
git age add-recipient
will:
- add the public key to the repository (
.agerecipients
file) - re-encrypt all files with the new set of recipients
- commit the changes
As soon as Alice pushed the changes to the remote repository, Bob can pull the changes and decrypt the files.