1.0.3 • Published 8 years ago

gulp-create-git-branch v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 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

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago