mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-04 04:31:14 -03:00
4 lines
167 B
Fish
4 lines
167 B
Fish
function __fish_is_git_repository --description 'Check if the current directory is a git repository'
|
|
git rev-parse --is-inside-work-tree ^/dev/null >/dev/null
|
|
end
|