Repository represents a git repository
| 71 | |
| 72 | // Repository represents a git repository |
| 73 | type Repository struct { |
| 74 | Storer storage.Storer |
| 75 | |
| 76 | r map[string]*Remote |
| 77 | wt billy.Filesystem |
| 78 | } |
| 79 | |
| 80 | type InitOptions struct { |
| 81 | // The default branch (e.g. "refs/heads/master") |
nothing calls this directly
no outgoing calls
no test coverage detected