1.0.3 • Published 10 years ago

gulp-create-git-branch v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

gulp-create-git-branch

Gulp wrapper for create-git-branch (https://github.com/adamnowocin/create-git-branch)

Installation

Install the package with npm and add it to your development dependencies:

npm install --save-dev gulp-create-git-branch

Usage

Basic

var branch = require('gulp-create-git-branch');

gulp.task('branch', function() {
  return gulp.src('').pipe(
    branch('git@github.com:adamnowocin/gulp-create-git-branch.git', '1.0.0')
  );
});

Specify temp repository folder

var branch = require('gulp-create-git-branch');

gulp.task('branch', function() {
  return gulp.src('').pipe(
    branch('git@github.com:adamnowocin/gulp-create-git-branch.git', '1.0.0', 'tmp-repo')
  );
});

License

gulp-create-git-branch is licensed under the MIT license. For the full license, see the LICENSE file.

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago