From b89a5571e91d5ca846e968f5165c5733f646f110 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 11 Sep 2025 02:36:28 -0500 Subject: [PATCH] change config file notes --- forgeConfig.config.go | 9 +++++++-- 1 file 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) }