зеркало из https://github.com/microsoft/git.git
Merge branch 'nd/git-dir-pointing-at-gitfile' into maint
* nd/git-dir-pointing-at-gitfile: Make setup_git_env() resolve .git file when $GIT_DIR is not specified
This commit is contained in:
Коммит
f8aeacfa1f
|
@ -123,14 +123,13 @@ static char *expand_namespace(const char *raw_namespace)
|
||||||
|
|
||||||
static void setup_git_env(void)
|
static void setup_git_env(void)
|
||||||
{
|
{
|
||||||
|
const char *gitfile;
|
||||||
|
|
||||||
git_dir = getenv(GIT_DIR_ENVIRONMENT);
|
git_dir = getenv(GIT_DIR_ENVIRONMENT);
|
||||||
git_dir = git_dir ? xstrdup(git_dir) : NULL;
|
|
||||||
if (!git_dir) {
|
|
||||||
git_dir = read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
|
|
||||||
git_dir = git_dir ? xstrdup(git_dir) : NULL;
|
|
||||||
}
|
|
||||||
if (!git_dir)
|
if (!git_dir)
|
||||||
git_dir = DEFAULT_GIT_DIR_ENVIRONMENT;
|
git_dir = DEFAULT_GIT_DIR_ENVIRONMENT;
|
||||||
|
gitfile = read_gitfile(git_dir);
|
||||||
|
git_dir = xstrdup(gitfile ? gitfile : git_dir);
|
||||||
git_object_dir = getenv(DB_ENVIRONMENT);
|
git_object_dir = getenv(DB_ENVIRONMENT);
|
||||||
if (!git_object_dir) {
|
if (!git_object_dir) {
|
||||||
git_object_dir = xmalloc(strlen(git_dir) + 9);
|
git_object_dir = xmalloc(strlen(git_dir) + 9);
|
||||||
|
|
|
@ -379,6 +379,10 @@ test_expect_success 'init with separate gitdir' '
|
||||||
test -d realgitdir/refs
|
test -d realgitdir/refs
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 're-init on .git file' '
|
||||||
|
( cd newdir && git init )
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 're-init to update git link' '
|
test_expect_success 're-init to update git link' '
|
||||||
(
|
(
|
||||||
cd newdir &&
|
cd newdir &&
|
||||||
|
|
Загрузка…
Ссылка в новой задаче