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; }