repo-manager/functions/hooks.zsh
2024-10-07 19:08:40 -07:00

13 lines
152 B
Bash

# Default post-hook functions (users can override these)
post_repo_clone() {
cd "$1"
}
post_repo_goto() {
cd "$1"
}
post_repo_new() {
cd "$1"
}