1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 11:10:28 +00:00
prezto/modules/git/functions/git-dir

17 lines
228 B
Plaintext
Raw Normal View History

#
# Gets the path to the Git directory.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
local git_dir="${$(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
return 1
fi