2023-02-05 22:13:01 +02:00
|
|
|
function groot
|
2023-03-17 19:00:07 +02:00
|
|
|
set -l is_git_worktree (command git rev-parse --is-inside-work-tree)
|
|
|
|
string match -qe 'true' "$is_git_worktree" || return
|
2023-02-05 22:13:01 +02:00
|
|
|
set -l root (command git rev-parse --show-toplevel)
|
|
|
|
test $status -eq 0 && cd $root
|
|
|
|
end
|