1.1.1 • Published 7 years ago

no-master-commits v1.1.1

Weekly downloads
87
License
Apache-2.0
Repository
-
Last release
7 years ago

no-master-commits

npm license David David NPM

A simple node module to prevent commits to the master branch. Include in your pre-commit flow and profit.

Why?

Popular (git work-flows)https://www.atlassian.com/git/tutorials/comparing-workflows prevent rewriting history on the master branch and possibly others. To enforce this, no commits are allowed on such branches, only pull requests.

This lazy-developer, consistently made commits to local master branch, and then suffered the consequences of having to reconcile the branches one too many times.

This module was born. The idea is to provide a simple CLI command that can be invoked in the precommit hook.

Installation

npm install no-master-commits

Usage

To prevent commits to branches 'master', 'deploy'

// package.json
"scripts": {
  "precommit": "no-master-commits -b master,deploy"
}

No CI?

Turns out that CI systems checkout a branch at specific commit-shas. Reversing the branch information for this is a complicated process and we bailed after a few attempts.

The tests are run locally, and since the package is supposed to check local checkouts in the first place, we'll leave it at that.

1.1.1

7 years ago

1.1.0

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago