├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── git-author ├── git-author.bats └── setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/README.md -------------------------------------------------------------------------------- /git-author: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/git-author -------------------------------------------------------------------------------- /git-author.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/git-author.bats -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/git-author/HEAD/setup.sh --------------------------------------------------------------------------------