зеркало из https://github.com/microsoft/git.git
git-sh-setup.sh: use rev-parse --git-path to get $GIT_DIR/objects
If $GIT_COMMON_DIR is set, $GIT_OBJECT_DIRECTORY should be $GIT_COMMON_DIR/objects, not $GIT_DIR/objects. Just let rev-parse --git-path handle it. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
c7b3a3d2fe
Коммит
3bc518084a
|
@ -344,7 +344,7 @@ git_dir_init () {
|
|||
echo >&2 "Unable to determine absolute path of git directory"
|
||||
exit 1
|
||||
}
|
||||
: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
|
||||
: ${GIT_OBJECT_DIRECTORY="$(git rev-parse --git-path objects)"}
|
||||
}
|
||||
|
||||
if test -z "$NONGIT_OK"
|
||||
|
|
Загрузка…
Ссылка в новой задаче