├── .gitattributes ├── .gitignore ├── Brewfile ├── LICENSE.md ├── Makefile ├── README.md └── src └── commoditize.bash /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/commoditize/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | commoditize 2 | Brewfile.lock.json 3 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew 'skopeo' 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/commoditize/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/commoditize/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/commoditize/HEAD/README.md -------------------------------------------------------------------------------- /src/commoditize.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/commoditize/HEAD/src/commoditize.bash --------------------------------------------------------------------------------