repo-manager/functions/hooks.zsh

12 lines
95 B
Bash
Raw Normal View History

2024-10-08 01:43:57 +00:00
post_repo_clone() {
2024-10-08 02:08:40 +00:00
cd "$1"
2024-10-08 01:43:57 +00:00
}
post_repo_goto() {
2024-10-08 02:08:40 +00:00
cd "$1"
2024-10-08 01:43:57 +00:00
}
post_repo_new() {
2024-10-08 02:08:40 +00:00
cd "$1"
2024-10-08 01:43:57 +00:00
}