├── keys ├── key3.txt ├── key1.json └── key2.json ├── file2.json ├── testando.json ├── another_test.json └── .gitattributes /keys/key3.txt: -------------------------------------------------------------------------------- 1 | key3 2 | -------------------------------------------------------------------------------- /file2.json: -------------------------------------------------------------------------------- 1 | another test 2 | -------------------------------------------------------------------------------- /keys/key1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillianFuks/test_cript/master/keys/key1.json -------------------------------------------------------------------------------- /keys/key2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillianFuks/test_cript/master/keys/key2.json -------------------------------------------------------------------------------- /testando.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillianFuks/test_cript/master/testando.json -------------------------------------------------------------------------------- /another_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillianFuks/test_cript/master/another_test.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | testando.json filter=git-crypt diff=git-crypt 2 | keys/*.json filter=git-crypt diff=git-crypt 3 | another_test.json filter=git-crypt diff=git-crypt 4 | --------------------------------------------------------------------------------