nix-dotfiles/hmModules/apps/shells/fish/functions/git_is_repo.fish

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