mirror of
https://github.com/lowne/fish-prompt-metro.git
synced 2024-10-27 20:34:12 +00:00
6 lines
172 B
Fish
6 lines
172 B
Fish
function git_is_repo -d "Test if the current directory is a Git repository"
|
|
if not command git rev-parse --git-dir > /dev/null 2>/dev/null
|
|
return 1
|
|
end
|
|
end
|