nodegit-flow
Advanced tools
Comparing version 0.1.13 to 0.1.14
{ | ||
"name": "nodegit-flow", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"description": "nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package", | ||
@@ -5,0 +5,0 @@ "main": "build/src/index.js", |
@@ -29,3 +29,3 @@ # nodegit-flow | ||
* [Flow.finishRelease](#finishfeaturerepository-name-options) | ||
* [Flow.finishFeature](#finishfeaturerepository-name-options) | ||
* [Flow.finishHotfix](#finishhotfixrepository-name-options) | ||
@@ -37,3 +37,3 @@ * [Flow.finishRelease](#finishreleaserepository-name-options) | ||
* [Flow.getDevelopBranch](#getdevelopbranchrepository) | ||
* [Flow.getReleasePrefix](#getfeatureprefixrepository) | ||
* [Flow.getFeaturePrefix](#getfeatureprefixrepository) | ||
* [Flow.getHotfixPrefix](#gethotfixprefixrepository) | ||
@@ -47,3 +47,3 @@ * [Flow.getMasterBranch](#getmasterbranchrepository) | ||
* [Flow.open](#openrepository) | ||
* [Flow.startRelease](#startfeaturerepository-name-options) | ||
* [Flow.startFeature](#startfeaturerepository-name-options) | ||
* [Flow.startHotfix](#starthotfixrepository-name) | ||
@@ -53,4 +53,4 @@ * [Flow.startRelease](#startreleaserepository-name) | ||
### finishRelease(repository, name, [options]) | ||
By default `finishFeature` will merge the feature branch into the develop branch and delete the feature branch. If successful, finishRelease will resolve with the merge commit. If a merge conflict occurs `finishRelease` will reject with the index of the conflict. | ||
### finishFeature(repository, name, [options]) | ||
By default `finishFeature` will merge the feature branch into the develop branch and delete the feature branch. If successful, finishFeature will resolve with the merge commit. If a merge conflict occurs `finishFeature` will reject with the index of the conflict. | ||
@@ -63,3 +63,3 @@ `options` Object | ||
```javascript | ||
NodeGit.Flow.finishRelease( | ||
NodeGit.Flow.finishFeature( | ||
repository, | ||
@@ -136,2 +136,5 @@ 'my-feature' | ||
### getFeaturePrefix(repository) | ||
Returns the value stored within a repos git config with the key of `gitflow.prefix.feature` | ||
### getReleasePrefix(repository) | ||
@@ -174,3 +177,3 @@ Returns the value stored within a repos git config with the key of `gitflow.prefix.release` | ||
### startRelease(repository, name, [options]) | ||
### startFeature(repository, name, [options]) | ||
`options` Object | ||
@@ -185,3 +188,3 @@ * `sha` String | ||
```javascript | ||
NodeGit.Flow.startRelease( | ||
NodeGit.Flow.startFeature( | ||
repository, | ||
@@ -188,0 +191,0 @@ 'my-feature', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45912
232