Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15471938
D8717.id20669.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
D8717.id20669.diff
View Options
diff --git a/src/workflow/ArcanistPatchWorkflow.php b/src/workflow/ArcanistPatchWorkflow.php
--- a/src/workflow/ArcanistPatchWorkflow.php
+++ b/src/workflow/ArcanistPatchWorkflow.php
@@ -265,7 +265,7 @@
list($err) = $repository_api->execManualLocal(
'log -r %s',
- hgsprintf('%s', $proposed_name));
+ $proposed_name);
// no error means hg log found a bookmark
if (!$err) {
@@ -295,6 +295,18 @@
$branch_name = $this->getBranchName($bundle);
$base_revision = $bundle->getBaseRevision();
+ if ($has_base_revision) {
+ // in a working copy that uses the git-svn bridge, the base revision
+ // might be a svn uri instead of a git ref
+
+ // NOTE: Use 'cat-file', not 'rev-parse --verify', because 'rev-parse'
+ // always "verifies" any properly-formatted commit even if it does not
+ // exist.
+ list($err) = $repository_api->execManualLocal(
+ 'cat-file -t %s', $base_revision);
+ $has_base_revision = !$err;
+ }
+
if ($base_revision && $has_base_revision) {
$repository_api->execxLocal(
'checkout -b %s %s',
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 9:47 AM (1 h, 25 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7634872
Default Alt Text
D8717.id20669.diff (1 KB)
Attached To
Mode
D8717: Fix an issue in arc patch with git-svn
Attached
Detach File
Event Timeline
Log In to Comment