-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from gabyx/feature/rework-prompt-settings
Rework prompt settings
- Loading branch information
Showing
154 changed files
with
1,451 additions
and
741 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 0 additions & 32 deletions
32
docs/cli/git_hooks_config_fail-on-non-existing-shared-hooks.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## git hooks config non-interactive-runner | ||
|
||
Enables/disables non-interactive execution of the runner. | ||
|
||
### Synopsis | ||
|
||
Enable or disables non-interactive execution of | ||
the Githooks runner executable. | ||
|
||
Enabling non-interactivity will only default answer all non-fatal prompts. | ||
Fatal prompts (e.g. the trust prompts) still need to be configured to pass. | ||
See `git hooks config trust-all --help`. | ||
|
||
``` | ||
git hooks config non-interactive-runner [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--print Print the setting. | ||
--enable Enables non-interactive mode of the runner executable. | ||
--disable Disables non-interactive mode of the runner executable. | ||
--Reset non-interactive mode of the runner executable. Reset the setting. | ||
--local Use the local Git configuration (default, except for `--print`). | ||
--global Use the global Git configuration. | ||
-h, --help help for non-interactive-runner | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [git hooks config](git_hooks_config.md) - Manages various Githooks configuration. | ||
|
||
###### Auto generated by spf13/cobra |
31 changes: 31 additions & 0 deletions
31
docs/cli/git_hooks_config_skip-non-existing-shared-hooks.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## git hooks config skip-non-existing-shared-hooks | ||
|
||
Enable or disable skipping non-existing shared hooks. | ||
|
||
### Synopsis | ||
|
||
Enable or disable failing hooks with an error when any | ||
shared hooks are missing. This usually means `git hooks shared update` | ||
has not been called yet. | ||
|
||
``` | ||
git hooks config skip-non-existing-shared-hooks [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--print Print the setting. | ||
--enable Enable skipping non-existing shared hooks. | ||
--disable Disable skipping non-existing shared hooks. | ||
--Reset skipping non-existing shared hooks. Reset the setting. | ||
--local Use the local Git configuration (default, except for `--print`). | ||
--global Use the global Git configuration. | ||
-h, --help help for skip-non-existing-shared-hooks | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [git hooks config](git_hooks_config.md) - Manages various Githooks configuration. | ||
|
||
###### Auto generated by spf13/cobra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## git hooks config skip-untrusted-hooks | ||
|
||
Enable/disable skipping active, untrusted hooks. | ||
|
||
### Synopsis | ||
|
||
Enable or disable failing hooks with an error when any | ||
active, untrusted hooks are present. | ||
Mostly wanted if all hooks must be executed. | ||
|
||
``` | ||
git hooks config skip-untrusted-hooks [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--print Print the setting. | ||
--enable Enable skipping active, untrusted hooks. | ||
--disable Disable skipping active, untrusted hooks. | ||
--Reset skipping active, untrusted hooks. Reset the setting. | ||
--local Use the local Git configuration (default, except for `--print`). | ||
--global Use the global Git configuration. | ||
-h, --help help for skip-untrusted-hooks | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [git hooks config](git_hooks_config.md) - Manages various Githooks configuration. | ||
|
||
###### Auto generated by spf13/cobra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.