Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15452462
D14358.id34665.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
D14358.id34665.diff
View Options
diff --git a/src/land/ArcanistGitLandEngine.php b/src/land/ArcanistGitLandEngine.php
--- a/src/land/ArcanistGitLandEngine.php
+++ b/src/land/ArcanistGitLandEngine.php
@@ -36,6 +36,9 @@
$this->pushChange();
$this->reconcileLocalState();
+ $api = $this->getRepositoryAPI();
+ $api->execxLocal('submodule update --init --recursive');
+
if ($this->getShouldKeep()) {
echo tsprintf(
"%s\n",
@@ -269,7 +272,6 @@
$api->execxLocal('checkout %s --', $this->getTargetOnto());
$api->execxLocal('pull --');
- $api->execxLocal('submodule update --init --recursive');
return;
}
@@ -284,7 +286,6 @@
$this->getTargetFullRef()));
$api->execxLocal('checkout %s --', $this->getTargetOnto());
- $api->execxLocal('submodule update --init --recursive');
return;
}
@@ -303,17 +304,20 @@
$api->execxLocal('checkout %s --', $this->getTargetOnto());
$api->execxLocal('reset --hard %s --', $this->getTargetFullRef());
- $api->execxLocal('submodule update --init --recursive');
}
private function destroyLocalBranch() {
$api = $this->getRepositoryAPI();
- if ($this->localRef == $this->getSourceRef()) {
- // If we landed a branch onto itself, don't destroy it.
+ if ($this->getSourceRef() == $this->getTargetOnto()) {
+ // If we landed a branch into a branch with the same name, so don't
+ // destroy it. This prevents us from cleaning up "master" if you're
+ // landing master into itself.
return;
}
+ // TODO: Maybe this should also recover the proper upstream?
+
$recovery_command = csprintf(
'git checkout -b %R %R',
$this->getSourceRef(),
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 5:01 AM (4 d, 12 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7229469
Default Alt Text
D14358.id34665.diff (1 KB)
Attached To
Mode
D14358: Fix a check when deciding to destroy the local branch after "arc land"
Attached
Detach File
Event Timeline
Log In to Comment