├── .gitlab-ci.yml ├── .gitsigners ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── git-signatures └── test ├── files └── keys │ ├── approver1.key │ ├── approver2.key │ ├── approver3.key │ ├── author1.key │ ├── author2.key │ ├── author3.key │ └── keys.trust ├── test.bats └── test_helper.bash /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitsigners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/.gitsigners -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/README.md -------------------------------------------------------------------------------- /bin/git-signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/bin/git-signatures -------------------------------------------------------------------------------- /test/files/keys/approver1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/approver1.key -------------------------------------------------------------------------------- /test/files/keys/approver2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/approver2.key -------------------------------------------------------------------------------- /test/files/keys/approver3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/approver3.key -------------------------------------------------------------------------------- /test/files/keys/author1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/author1.key -------------------------------------------------------------------------------- /test/files/keys/author2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/author2.key -------------------------------------------------------------------------------- /test/files/keys/author3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/author3.key -------------------------------------------------------------------------------- /test/files/keys/keys.trust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/files/keys/keys.trust -------------------------------------------------------------------------------- /test/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/test.bats -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbang/git-signatures/HEAD/test/test_helper.bash --------------------------------------------------------------------------------