Config return the repository config. In a filesystem backed repository this means read the `.git/config`.
()
| 556 | // Config return the repository config. In a filesystem backed repository this |
| 557 | // means read the `.git/config`. |
| 558 | func (r *Repository) Config() (*config.Config, error) { |
| 559 | return r.Storer.Config() |
| 560 | } |
| 561 | |
| 562 | // SetConfig marshall and writes the repository config. In a filesystem backed |
| 563 | // repository this means write the `.git/config`. This function should be called |