mirror of
https://github.com/dokku/dokku.git
synced 2025-12-24 07:49:26 +01:00
30 lines
475 B
Bash
Executable File
30 lines
475 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_AVAILABLE_PATH/git/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/git/help-functions"
|
|
|
|
case "$1" in
|
|
git-hook)
|
|
cmd-git-hook "$@"
|
|
;;
|
|
|
|
git-upload-pack)
|
|
cmd-git-upload-pack "$@"
|
|
;;
|
|
|
|
git-*)
|
|
cmd-git-glob "$@"
|
|
;;
|
|
|
|
help | git:help)
|
|
cmd-git-help "$@"
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|