├── README.md ├── bin ├── eshook-common.sh ├── git-endsubtopic ├── git-endtopic ├── git-flowhook-init ├── git-mksubtopic ├── git-mktopic └── git-pushtopic ├── hooks ├── commit-msg ├── common.sh ├── pre-commit └── update └── installer ├── install-commands-dev.sh ├── install-commands.sh ├── install-hooks-dev.sh ├── install-hooks.sh └── install-local.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/README.md -------------------------------------------------------------------------------- /bin/eshook-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/eshook-common.sh -------------------------------------------------------------------------------- /bin/git-endsubtopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-endsubtopic -------------------------------------------------------------------------------- /bin/git-endtopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-endtopic -------------------------------------------------------------------------------- /bin/git-flowhook-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-flowhook-init -------------------------------------------------------------------------------- /bin/git-mksubtopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-mksubtopic -------------------------------------------------------------------------------- /bin/git-mktopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-mktopic -------------------------------------------------------------------------------- /bin/git-pushtopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/bin/git-pushtopic -------------------------------------------------------------------------------- /hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/hooks/commit-msg -------------------------------------------------------------------------------- /hooks/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/hooks/common.sh -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /hooks/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/hooks/update -------------------------------------------------------------------------------- /installer/install-commands-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/installer/install-commands-dev.sh -------------------------------------------------------------------------------- /installer/install-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/installer/install-commands.sh -------------------------------------------------------------------------------- /installer/install-hooks-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/installer/install-hooks-dev.sh -------------------------------------------------------------------------------- /installer/install-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/installer/install-hooks.sh -------------------------------------------------------------------------------- /installer/install-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eaglesakura/git-flow-hook/HEAD/installer/install-local.sh --------------------------------------------------------------------------------