Page MenuHomePhabricator

D14358.id34665.diff
No OneTemporary

D14358.id34665.diff

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

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)

Event Timeline