repo-manager/functions/help.zsh

19 lines
427 B
Bash
Raw Normal View History

2024-10-08 01:35:43 +00:00
repo_help() {
cat <<EOF
Usage: repo <command> <repository>
Commands:
get Clone a repository to the repos directory
open Open the current repository in the browser
aur Clone an AUR repository
list List all repositories
go|goto Navigate to a repository
new|create Create a new repository
help Show this help message
Examples:
repo get github.com/user/repo
repo open
EOF
}