1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 11:50:26 +00:00
prezto/modules/git/functions/git-dir

21 lines
307 B
Plaintext
Raw Normal View History

#
2012-10-02 02:48:13 +00:00
# Displays the path to the Git directory.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# function git-dir {
local git_dir="${$(command git rev-parse --git-dir):A}"
if [[ -n "$git_dir" ]]; then
print "$git_dir"
return 0
2012-09-30 03:37:28 +00:00
else
print "$0: not a repository: $PWD" >&2
2012-09-30 03:37:28 +00:00
return 1
fi
# }