Browse Source

Merge branch 'nd/worktree' into HEAD

* nd/worktree:
  git-sh-setup.sh: use "git rev-parse --show-cdup" to check for SUBDIRECTORY_OK
maint
Junio C Hamano 18 years ago
parent
commit
7eedc1c1b3
  1. 2
      git-sh-setup.sh

2
git-sh-setup.sh

@ -110,7 +110,7 @@ esac @@ -110,7 +110,7 @@ esac
if [ -z "$SUBDIRECTORY_OK" ]
then
: ${GIT_DIR=.git}
GIT_DIR=$(GIT_DIR="$GIT_DIR" git rev-parse --git-dir) || {
test -z "$(git rev-parse --show-cdup)" || {
exit=$?
echo >&2 "You need to run this command from the toplevel of the working tree."
exit $exit

Loading…
Cancel
Save