mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-26 13:20:17 +02:00
Merge pull request #146 from samuel4x4/develop
Add task for force updating a working copy
This commit is contained in:
commit
c6fc7b786e
87
Mage/Task/BuiltIn/Scm/ForceUpdateTask.php
Normal file
87
Mage/Task/BuiltIn/Scm/ForceUpdateTask.php
Normal file
@ -0,0 +1,87 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of the Magallanes package.
|
||||
*
|
||||
* (c) Andrés Montañez <andres@andresmontanez.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Mage\Task\BuiltIn\Scm;
|
||||
|
||||
use Mage\Task\AbstractTask;
|
||||
use Mage\Task\SkipException;
|
||||
|
||||
/**
|
||||
* Task for Force Updating a Working Copy
|
||||
*
|
||||
* 'git fetch' downloads the latest from remote without trying to merge or rebase anything.
|
||||
* 'git reset' resets the master branch to what you just fetched.
|
||||
* The '--hard' option changes all the files in your working tree to match the files in origin/master,
|
||||
* so if you have any local changes, they will be lost.
|
||||
*
|
||||
* @author Samuel Chiriluta <samuel4x4@gmail.com>
|
||||
*/
|
||||
class ForceUpdateTask extends AbstractTask
|
||||
{
|
||||
/**
|
||||
* Name of the Task
|
||||
* @var string
|
||||
*/
|
||||
private $name = 'SCM Force Update [built-in]';
|
||||
|
||||
/**
|
||||
* (non-PHPdoc)
|
||||
* @see \Mage\Task\AbstractTask::getName()
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* (non-PHPdoc)
|
||||
* @see \Mage\Task\AbstractTask::init()
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
switch ($this->getConfig()->general('scm')) {
|
||||
case 'git':
|
||||
$this->name = 'SCM Force Update (GIT) [built-in]';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Force Updates the Working Copy
|
||||
* @see \Mage\Task\AbstractTask::run()
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
switch ($this->getConfig()->general('scm')) {
|
||||
case 'git':
|
||||
$branch = $this->getParameter('branch', 'master');
|
||||
$remote = $this->getParameter('remote', 'origin');
|
||||
|
||||
$command = 'git fetch ' . $remote . ' ' . $branch;
|
||||
$result = $this->runCommandRemote($command);
|
||||
|
||||
$command = 'git reset --hard ' . $remote . '/' . $branch;
|
||||
$result = $result && $this->runCommandRemote($command);
|
||||
|
||||
$command = 'git pull ' . $remote . ' ' . $branch;
|
||||
$result = $result && $this->runCommandRemote($command);
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new SkipException;
|
||||
break;
|
||||
}
|
||||
|
||||
$result = $this->runCommandLocal($command);
|
||||
$this->getConfig()->reload();
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user