git-mix is inspired by git-crypt but implemented by rust.
Based on Git Attributes. Using the “clean” and “smudge” filters , we can can set a filter for particular paths before they’re checked out and staged as the following:
Thanks to cargo :)
bash
cargo install git-mix
bsah
.gitattributes !filter
private/* filter=git-mix
git-mix gen
to generate the config for defining the filter git-mix
bash
[filter = "git-mix"]
clean = git-mix encrypt --key BiqdSyKwmnIFDKg1LzXIg5eEM3RWbdUb
smudge = git-mix decrypt --key BiqdSyKwmnIFDKg1LzXIg5eEM3RWbdUb
append template to .git/config
remember the key, or you can reset the key which is required 32 bytes by git-mix genkey
or yourself
commit the private data and push remote to checkout the mixed data:)
git-mix gen --key <key>
to generate the filter template
bash
❯ git-mix gen --key BiqdSyKwmnIFDKg1LzXIg5eEM3RWbdUb 127ms
[filter = "git-mix"]
clean = git-mix encrypt --key BiqdSyKwmnIFDKg1LzXIg5eEM3RWbdUb
smudge = git-mix decrypt --key BiqdSyKwmnIFDKg1LzXIg5eEM3RWbdUb
To contribute to git-mix, clone this repo locally and commit your code on a separate branch.
PS: PR Welcome :rocket: :rocket: :rocket: :rocket:
GitHub @detailyang
git-mix is licensed under the [MIT] license.