Add list-projs to git-ctrl and SKILL.md

This commit is contained in:
lyn
2026-04-13 10:21:09 +00:00
parent 5a5a2498c0
commit c8642368e9
2 changed files with 11 additions and 0 deletions

View File

@@ -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 <path to your repo> {baseDir}/scripts/git-ctrl repo-config --repo-path <path to your repo>
``` ```
### 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 ### External Login Control
Enable or disable local login on Gitea. Enable or disable local login on Gitea.

View File

@@ -54,6 +54,9 @@ case "$subcommand" in
external-login-ctrl) external-login-ctrl)
"$SCRIPT_DIR/external-login-ctrl" "$@" "$SCRIPT_DIR/external-login-ctrl" "$@"
;; ;;
list-projs)
"$SCRIPT_DIR/list-projs" "$@"
;;
reset-password) reset-password)
"$SCRIPT_DIR/reset-password" "$@" "$SCRIPT_DIR/reset-password" "$@"
;; ;;