这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/deployment/methods/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ git:initialize <app> # Initialize a git repository
git:public-key # Outputs the dokku public deploy key
git:report [<app>] [<flag>] # Displays a git report for one or more apps
git:set <app> <key> (<value>) # Set or clear a git property for an app
git:status <app> # Show the working tree status for an app
git:unlock <app> [--force] # Removes previous git clone folder for new deployment
```

Expand Down
1 change: 1 addition & 0 deletions plugins/git/help-functions
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ fn-help-content() {
git:report [<app>] [<flag>], Displays a git report for one or more apps
git:set <app> <property> (<value>), Set or clear a git property for an app
git:unlock <app> [--force], Removes previous git clone folder for new deployment
git:status <app>, show the working tree status for an app
help_content
}
8 changes: 8 additions & 0 deletions plugins/git/internal-functions
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,14 @@ cmd-git-report-single() {
fi
}

cmd-git-status() {
declare APP="$1"
local APP_ROOT="$DOKKU_ROOT/$APP"

verify_app_name "$APP"
fn-git-cmd "$APP_ROOT" status
}

fn-git-auth-error() {
dokku_log_warn "There is no deploy key associated with the $DOKKU_SYSTEM_USER user."
dokku_log_warn "Generate an ssh key with the following command (do not specify a password):"
Expand Down
6 changes: 6 additions & 0 deletions plugins/git/subcommands/status
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x

cmd-git-status "$@"