summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
}