diff --git a/git-hangman-lab/SKILL.md b/git-hangman-lab/SKILL.md index bf0e2a9..598274d 100644 --- a/git-hangman-lab/SKILL.md +++ b/git-hangman-lab/SKILL.md @@ -83,6 +83,14 @@ When you clone a repository from git.hangman-lab.top and are ready to develop, o {baseDir}/scripts/git-ctrl repo-config --repo-path ``` +### List Projects + +List all repositories visible to the current user on git.hangman-lab.top in markdown table format. + +```bash +{baseDir}/scripts/git-ctrl list-projs +``` + ### External Login Control Enable or disable local login on Gitea. diff --git a/git-hangman-lab/scripts/git-ctrl b/git-hangman-lab/scripts/git-ctrl index 11a13e3..a6336a7 100755 --- a/git-hangman-lab/scripts/git-ctrl +++ b/git-hangman-lab/scripts/git-ctrl @@ -54,6 +54,9 @@ case "$subcommand" in external-login-ctrl) "$SCRIPT_DIR/external-login-ctrl" "$@" ;; + list-projs) + "$SCRIPT_DIR/list-projs" "$@" + ;; reset-password) "$SCRIPT_DIR/reset-password" "$@" ;;