| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Source: Git Hooks - Git
Git Hooks Integration for Chatie Projects
This module is a wrapper of the NPM module git-scripts, it provide following additional features:
Learn more about the original git-scripts from its GitHub homepage: git-scripts
Frist push:
If you don't want to need to add the -u parameter every time, you can modify default settings for git.
After that just use:
You can skip git hook for pre-push if you want.
To temporary disable the pre-push git hook, you can set NO_HOOK=1 before do git push:
# for Linux & Mac
NO_HOOK=1 git push
# for Windows
set NO_HOOK=1 git pushTo permanent disable the pre-push git hook, you can delete the related settings in package.json:
- "git": {
- "scripts": {
- "pre-push": "npx git-scripts-pre-push"
- }
- }In the v0.7 version, we have improved the user experience. Solve the problem of push blocking and improve the readability of output information. All projects using @chatie/scripts are highly recommended to upgrade.
Link to Issue #27
Update steps:
| Back | FazBrowse Home | New Git URL |