summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 02:36:28 -0500
committerJeff Carr <[email protected]>2025-09-11 02:36:28 -0500
commitb89a5571e91d5ca846e968f5165c5733f646f110 (patch)
treec470e2fb1bd6a41bbe2b8eafd5b3213d684c23ae
parentb231a2144d6efb29583dfc177c3a07d0be01e642 (diff)
change config file notes
-rw-r--r--forgeConfig.config.go9
1 files changed, 7 insertions, 2 deletions
diff --git a/forgeConfig.config.go b/forgeConfig.config.go
index f62ac35..6c3c237 100644
--- a/forgeConfig.config.go
+++ b/forgeConfig.config.go
@@ -13,8 +13,13 @@ import (
func (cfg *ForgeConfigs) ConfigSave() error {
var header string
header += "\n"
- header += "# this file is intended to be used to customize settings on what\n"
- header += "# git repos you have write access to. That is, where you can run 'git push'\n"
+ header += "# the forge config file\n"
+ header += "# You can customize things like:\n"
+ header += "#\n"
+ header += "# * which repos you have write access to\n"
+ header += "# * custom branch names for 'master', 'devel' and 'user'\n"
+ header += "# * 'favorites' so you can remember which things you like\n"
+ header += "#\n"
header += "\n"
return config.ConfigSaveWithHeader(cfg, header)
}