From 936faa404ef02c88bde6a62663a6e1a4831c1fb3 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Sun, 24 May 2020 09:15:42 +0200 Subject: Revert "Merge pull request #31 from lcostea/liviu/add_save_config_changes" This reverts commit 53f87846a196c856e00fe825bc5f29551b2ea524, reversing changes made to bb3a1bfcc62224001d577b933355661259b80854. --- _examples/config/main.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/_examples/config/main.go b/_examples/config/main.go index 7c5592f..6ccc9f6 100644 --- a/_examples/config/main.go +++ b/_examples/config/main.go @@ -58,10 +58,6 @@ func main() { // Get custom config param (merged in the same way git does: system -> global -> local) Info("custom.name is %s", cfg.Merged.Section("custom").Option("name")) - //In order to save the config file, you need to call SetConfig - //After calling this go to .git/config and see the custom.name added and the changes to the remote - r.Storer.SetConfig(cfg) - // Get system config params (/etc/gitconfig) systemSections := cfg.Merged.SystemConfig().Sections for _, ss := range systemSections { -- cgit