зеркало из https://github.com/microsoft/git.git
Merge branch 'js/early-config' into maint
Correct start-up sequence so that a repository could be placed immediately under the root directory again (which was broken at around Git 2.13). * js/early-config: setup: avoid double slashes when looking for HEAD
This commit is contained in:
Коммит
16f8cd1fba
4
setup.c
4
setup.c
|
@ -312,7 +312,9 @@ int is_git_directory(const char *suspect)
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
/* Check worktree-related signatures */
|
/* Check worktree-related signatures */
|
||||||
strbuf_addf(&path, "%s/HEAD", suspect);
|
strbuf_addstr(&path, suspect);
|
||||||
|
strbuf_complete(&path, '/');
|
||||||
|
strbuf_addstr(&path, "HEAD");
|
||||||
if (validate_headref(path.buf))
|
if (validate_headref(path.buf))
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче