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.
npm install git-origin-check
git-origin-check github.com
"husky": {
"hooks": {
"pre-push": "git-origin-check github.com"
}
}