forked from go-git/go-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
46 lines (33 loc) · 1.03 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main
import (
"os"
"github.com/go-git/go-git/v5"
. "github.com/go-git/go-git/v5/_examples"
"github.com/go-git/go-git/v5/config"
)
// Example of how to:
// - Access basic local (i.e. ./.git/config) configuration params
// - Set basic local config params
func main() {
tmp, err := os.MkdirTemp("", "go-git-example")
CheckIfError(err)
defer os.RemoveAll(tmp)
Info("git init")
r, err := git.PlainInit(tmp, false)
CheckIfError(err)
// Load the configuration
cfg, err := r.Config()
CheckIfError(err)
Info("worktree is %s", cfg.Core.Worktree)
// Set basic local config params
cfg.Remotes["origin"] = &config.RemoteConfig{
Name: "origin",
URLs: []string{"https://github.com/git-fixtures/basic.git"},
}
Info("origin remote: %+v", cfg.Remotes["origin"])
cfg.User.Name = "Local name"
Info("custom.name is %s", cfg.User.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)
}