tj.git-extras/bin/git-root
2014-11-30 17:47:26 +05:30

25 lines
354 B
Bash
Executable file

#!/usr/bin/env bash
git_root() {
git rev-parse --show-toplevel
}
# get the relative path of current path according to root of repo
git_root_relative() {
git rev-parse --show-prefix
}
if test $# -eq 0; then
git_root
else
case "$1" in
-r|--relative)
git_root_relative
;;
*)
git_root
;;
esac
fi