Merge pull request #619 from qmx/add-push-configuration

feat: add no-push config to disable automatic git push
This commit is contained in:
Steve Yegge
2025-12-18 11:14:56 -08:00
committed by GitHub
4 changed files with 30 additions and 0 deletions

View File

@@ -106,6 +106,9 @@ func Initialize() error {
// Sync configuration defaults (bd-4u8)
v.SetDefault("sync.require_confirmation_on_mass_delete", false)
// Push configuration defaults
v.SetDefault("no-push", false)
// Read config file if it was found
if configFileSet {
if err := v.ReadInConfig(); err != nil {