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

This commit is contained in:
lyn
2026-04-13 13:38:56 +00:00
parent bd84a50e98
commit 7c0b857a2f
2 changed files with 6 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ Create a new git repository on git.hangman-lab.top.
List all repositories visible to the current user on git.hangman-lab.top in markdown table format.
```bash
{baseDir}/scripts/list-projs
{baseDir}/scripts/git-ctrl list-projs
```
### Pull Request Operations

View File

@@ -17,7 +17,8 @@ if [[ $# -eq 0 ]]; then
echo " repo-add-collaborators Add collaborator to repository"
echo " repo-config Configure repository"
echo " external-login-ctrl Enable/disable local login"
echo " reset-password Reset user password"
echo " list-projs List all visible repositories
reset-password Reset user password"
exit 1
fi
@@ -55,6 +56,9 @@ case "$subcommand" in
"$SCRIPT_DIR/external-login-ctrl" "$@"
;;
list-projs)
"$SCRIPT_DIR/list-projs" "$@"
;;
reset-password)
"$SCRIPT_DIR/reset-password" "$@"
;;