| 1 | <?php |
||
| 16 | class GitController extends \hidev\base\Controller |
||
| 17 | { |
||
| 18 | protected $_before = ['.gitignore']; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string current tag |
||
| 22 | */ |
||
| 23 | protected $tag; |
||
| 24 | |||
| 25 | public function actionRelease($release = null) |
||
| 34 | |||
| 35 | public function actionCommit($message) |
||
| 39 | |||
| 40 | public function actionTag($tag) |
||
| 44 | |||
| 45 | public function actionPush() |
||
| 49 | |||
| 50 | public function getComponent() |
||
| 54 | } |
||
| 55 |