change config file notes
This commit is contained in:
parent
b231a2144d
commit
b89a5571e9
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue