| 123456789101112131415161718192021 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- const { git } = require( 'ckeditor5-dev-utils' );
- /**
- * Pushes changes of current branch in repository to default origin.
- *
- * Example:
- *
- * gulp exec --task git-push
- *
- * @param {String} workdir
- */
- module.exports = function executeGitPush( workdir ) {
- git.push( workdir );
- };
|