oh-my-fish/lib/git/git_is_repo.fish

4 lines
138 B
Fish
Raw Normal View History

function git_is_repo -d "Check if directory is a repository"
test -d .git; or command git rev-parse --git-dir >/dev/null ^/dev/null
end