git-origin-check

Validates Git origin is set to correct host.

Usage no npm install needed!

<script type="module">
  import gitOriginCheck from 'https://cdn.skypack.dev/git-origin-check';
</script>

README

git-origin-check

NPM

Build Status

Validates Git origin is set to the correct host. When used in combination with Husky as a pre-push hook it enables users to ensure code is not inadvertently pushed to the wrong Github instance. This will check static origin URLs as well as SSH aliases for the correct URL.

Example Usage:

1. Install Module

npm install git-origin-check
git-origin-check github.com

2. Add Husky Hook

"husky": {
  "hooks": {
    "pre-push": "git-origin-check github.com"
  }
}