mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
19 lines
483 B
Bash
Executable File
19 lines
483 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
cmd-git-initialize() {
|
|
declare desc="initialize a git repository for an app"
|
|
declare cmd="git:initialize"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
dokku_log_info1_quiet "Initializing git repository for $APP"
|
|
fn-git-create-hook "$APP"
|
|
}
|
|
|
|
cmd-git-initialize "$@"
|