2015-08-26 23:20:13 +08:00
|
|
|
function git_is_repo -d "Check if directory is a repository"
|
2018-10-25 21:23:30 +08:00
|
|
|
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
|
2015-08-26 23:20:13 +08:00
|
|
|
end
|