Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15424359
D19681.id47032.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
D19681.id47032.diff
View Options
diff --git a/src/workflow/ArcanistLandWorkflow.php b/src/workflow/ArcanistLandWorkflow.php
--- a/src/workflow/ArcanistLandWorkflow.php
+++ b/src/workflow/ArcanistLandWorkflow.php
@@ -310,6 +310,30 @@
return null;
}
+ private function getGitSvnTrunk() {
+ if (!$this->isGitSvn) {
+ return null;
+ }
+
+ $repository_api = $this->getRepositoryAPI();
+ list($err, $refspec) = $repository_api->execManualLocal(
+ 'config svn-remote.svn.fetch');
+
+ if ($err) {
+ return 'trunk';
+ }
+
+ $refspec = rtrim(substr($refspec, strrpos($refspec, ':') + 1));
+
+ $prefix = 'refs/remotes/';
+ if (substr($refspec, 0, strlen($prefix)) !== $prefix) {
+ return 'trunk';
+ }
+
+ $refspec = substr($refspec, strlen($prefix));
+ return $refspec;
+ }
+
private function readEngineArguments() {
// NOTE: This is hard-coded for Git right now.
// TODO: Clean this up and move it into LandEngines.
@@ -494,7 +518,7 @@
$this->ontoRemoteBranch = $this->onto;
if ($this->isGitSvn) {
- $this->ontoRemoteBranch = 'trunk';
+ $this->ontoRemoteBranch = $this->getGitSvnTrunk();
} else if ($this->isGit) {
$this->ontoRemoteBranch = $this->remote.'/'.$this->onto;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 9:44 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7719083
Default Alt Text
D19681.id47032.diff (1 KB)
Attached To
Mode
D19681: Fix arc land on odd/modern git-svn checkouts
Attached
Detach File
Event Timeline
Log In to Comment