1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 00:42:40 +01:00

(stable) Promote 2016 Week 53

This commit is contained in:
epriestley 2016-12-30 14:49:40 -08:00
commit e8b580d2e5

View file

@ -544,8 +544,10 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
}
$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
// TODO: In 2.7.0 (circa 2016) git introduced `git remote get-url`
// with saner error handling.
if (!$uri || $uri === $remote) {
return null;
}