Skip to content

Commit 5f62dd2

Browse files
committed
Added detection for .git files that point to alternative git folder locations
1 parent 9fea656 commit 5f62dd2

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/Gitonomy/Git/Repository.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,19 @@ private function initDir($gitDir, $workingDir = null)
166166
throw new InvalidArgumentException(sprintf('Directory "%s" does not exist or is not a directory', $gitDir));
167167
} elseif (!is_dir($realGitDir)) {
168168
throw new InvalidArgumentException(sprintf('Directory "%s" does not exist or is not a directory', $realGitDir));
169-
} elseif (null === $workingDir && is_dir($realGitDir.'/.git')) {
169+
} elseif (null === $workingDir && is_file($realGitDir . '/.git')) {
170+
if (!preg_match('/^gitdir: ?(.+)$/', file_get_contents($realGitDir . '/.git'), $matches)) {
171+
throw new InvalidArgumentException(sprintf('Directory "%s" contains a .git file, but it is not in the expected format', $realGitDir));
172+
}
173+
$foundGitPath = realpath($realGitDir . DIRECTORY_SEPARATOR . $matches[1]);
174+
if (!is_dir($foundGitPath)) {
175+
throw new InvalidArgumentException(sprintf('Directory "%s" contains a .git file, but the directory it points to cannot be found', $realGitDir));
176+
}
177+
$workingDir = $realGitDir;
178+
$realGitDir = $foundGitPath;
179+
} elseif (null === $workingDir && is_dir($realGitDir . '/.git')) {
170180
$workingDir = $realGitDir;
171-
$realGitDir = $realGitDir.'/.git';
181+
$realGitDir = $realGitDir . '/.git';
172182
}
173183

174184
$this->gitDir = $realGitDir;

0 commit comments

Comments
 (0)