Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nodegit-flow

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodegit-flow

nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package

  • 0.1.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
268
increased by3.47%
Maintainers
2
Weekly downloads
 
Created
Source

nodegit-flow

Adds gitflow methods to the nodegit module.

Installation

npm install --save nodegit-flow

Usage

nodegit-flow is a drop in replacement for nodegit. All methods in nodegit are included in nodegit-flow.

var nodegit = require('nodegit-flow'); // wrap nodegit in gitflow

You can initialize an instance of nodegit-flow or use its static methods

var flow = nodegit.Flow.init(repo, config);

flow.startRelease('1.0.0'); // Use a flow instance to start a release
nodegit.Flow.startRelease(repo, '1.0.0'); // or the static equivalent

Methods

  • Flow.finishFeature
  • Flow.finishHotfix
  • Flow.finishRelease
  • Flow.getConfig
  • Flow.getConfigDefault
  • Flow.getConfigRequiredKeys
  • Flow.getDevelopBranch
  • Flow.getFeaturePrefix
  • Flow.getHotfixPrefix
  • Flow.getMasterBranch
  • Flow.getReleasePrefix
  • Flow.getSupportPrefix
  • Flow.getVersionTagPrefix
  • Flow.init
  • Flow.isInitialized
  • Flow.open
  • Flow.startFeature
  • Flow.startHotfix
  • Flow.startRelease
  • Flow.validateConfig

Keywords

FAQs

Package last updated on 11 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc