mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
12 years ago
|
<?php
|
||
|
class Mage_Task_BuiltIn_Scm_ChangeBranchBack
|
||
|
extends Mage_Task_TaskAbstract
|
||
|
{
|
||
|
private $_name = 'SCM Changing branch Back [built-in]';
|
||
|
|
||
|
public function getName()
|
||
|
{
|
||
|
return $this->_name;
|
||
|
}
|
||
|
|
||
|
public function init()
|
||
|
{
|
||
|
switch ($this->getConfig()->scm('type')) {
|
||
|
case 'git':
|
||
|
$this->_name = 'SCM Changing branch Back (GIT) [built-in]';
|
||
|
break;
|
||
|
|
||
|
case 'svn':
|
||
|
$this->_name = 'SCM Changing branch Back (Subversion) [built-in]';
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function run()
|
||
|
{
|
||
|
switch ($this->getConfig()->scm('type')) {
|
||
|
case 'git':
|
||
|
$oldBranchFile = '.mage/' . $this->getConfig()->getEnvironment() . '.oldBranch';
|
||
|
$currentBranch = trim(file_get_contents($oldBranchFile));
|
||
|
|
||
|
$command = 'git checkout ' . $currentBranch;
|
||
|
$result = $this->_runLocalCommand($command);
|
||
|
@unlink($oldBranchFile);
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
return false;
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
|
||
|
$this->getConfig()->reload();
|
||
|
|
||
|
return $result;
|
||
|
}
|
||
|
}
|