Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15301498
D14530.id35148.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D14530.id35148.diff
View Options
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
@@ -521,6 +521,16 @@
}
public function getRemoteURI() {
+ // Determine which remote to examine; default to 'origin'
+ $remote = 'origin';
+ $branch = $this->getBranchName();
+ if ($branch) {
+ $path = $this->getPathToUpstream($branch);
+ if ($path->isConnectedToRemote()) {
+ $remote = $path->getRemoteRemoteName();
+ }
+ }
+
// "git ls-remote --get-url" is the appropriate plumbing to get the remote
// URI. "git config remote.origin.url", on the other hand, may not be as
// accurate (for example, it does not take into account possible URL
@@ -528,9 +538,9 @@
// the --get-url flag requires git 1.7.5.
$version = $this->getGitVersion();
if (version_compare($version, '1.7.5', '>=')) {
- list($stdout) = $this->execxLocal('ls-remote --get-url origin');
+ list($stdout) = $this->execxLocal('ls-remote --get-url %s', $remote);
} else {
- list($stdout) = $this->execxLocal('config remote.origin.url');
+ list($stdout) = $this->execxLocal('config %s', "remote.$remote.url");
}
$uri = rtrim($stdout);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mar 6 2025, 5:53 PM (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7298731
Default Alt Text
D14530.id35148.diff (1 KB)
Attached To
Mode
D14530: Examine upstream path instead of assuming "origin"
Attached
Detach File
Event Timeline
Log In to Comment