mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-11 07:10:29 +00:00
5 lines
169 B
Fish
5 lines
169 B
Fish
|
function git_is_worktree -d "Check if directory is inside the worktree of a repository"
|
||
|
git_is_repo
|
||
|
and test (command git rev-parse --is-inside-git-dir) = false
|
||
|
end
|