fish-shell/share/functions/__fish_is_git_repository.fish

4 lines
167 B
Fish
Raw Normal View History

2017-01-22 10:15:18 +00:00
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