1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-02-08 21:35:21 +00:00

17 lines
272 B
Plaintext
Raw Normal View History

#
2012-10-01 22:48:13 -04:00
# Displays 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-29 23:37:28 -04:00
else
print "$0: not a repository: $PWD" >&2
2012-09-29 23:37:28 -04:00
return 1
fi