From ceee587bb01421ca4a11449590eeccb1cf08772a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Monta=C3=B1ez?= Date: Sun, 8 Dec 2013 20:17:39 -0200 Subject: [PATCH] Fix typo in GitRebase Deploy strategy. --- Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php b/Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php index 332517a..19d7daf 100644 --- a/Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php +++ b/Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php @@ -70,7 +70,7 @@ class GitRebaseTask extends AbstractTask implements IsReleaseAware // If Stashed, restore. if ($stashed) { - $command = 'git tash pop'; + $command = 'git stash pop'; $result = $this->runCommandRemote($command) && $result; }