change config file notes

This commit is contained in:
Jeff Carr 2025-09-11 02:36:28 -05:00
parent b231a2144d
commit b89a5571e9
1 changed files with 7 additions and 2 deletions

View File

@ -13,8 +13,13 @@ import (
func (cfg *ForgeConfigs) ConfigSave() error { func (cfg *ForgeConfigs) ConfigSave() error {
var header string var header string
header += "\n" header += "\n"
header += "# this file is intended to be used to customize settings on what\n" header += "# the forge config file\n"
header += "# git repos you have write access to. That is, where you can run 'git push'\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" header += "\n"
return config.ConfigSaveWithHeader(cfg, header) return config.ConfigSaveWithHeader(cfg, header)
} }