nix-dotfiles/programs/fish/functions/git_is_repo.fish
2023-11-19 19:03:46 -08:00

5 lines
135 B
Fish

test -d .git
or begin
set -l info (command git rev-parse --git-dir --is-bare-repository 2>/dev/null)
and test $info[2] = false
end