diff --git a/src/repository/api/ArcanistGitAPI.php b/src/repository/api/ArcanistGitAPI.php --- a/src/repository/api/ArcanistGitAPI.php +++ b/src/repository/api/ArcanistGitAPI.php @@ -544,8 +544,8 @@ } $uri = rtrim($stdout); - // 'origin' is what ls-remote outputs if no origin remote URI exists - if (!$uri || $uri === 'origin') { + // ls-remote echos the remote name (ie 'origin') if no remote URI is found + if (!$uri || $uri === $remote) { return null; }