git-origin-check
v1.0.9
Published
Validates Git origin is set to correct host.
Downloads
3,750
Readme
git-origin-check
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"
}
}