2012-05-06 19:40:11 +02:00
|
|
|
#
|
2012-10-02 04:48:13 +02:00
|
|
|
# Displays the path to the Git directory.
|
2012-05-06 19:40:11 +02:00
|
|
|
#
|
|
|
|
# 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 05:37:28 +02:00
|
|
|
else
|
2012-09-30 21:30:18 +02:00
|
|
|
print "$0: not a repository: $PWD" >&2
|
2012-09-30 05:37:28 +02:00
|
|
|
return 1
|
2012-05-06 19:40:11 +02:00
|
|
|
fi
|
|
|
|
|