(hostname string)
| 143 | } |
| 144 | |
| 145 | func (c *cfg) GitProtocol(hostname string) gh.ConfigEntry { |
| 146 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 147 | return c.GetOrDefault(hostname, gitProtocolKey).Unwrap() |
| 148 | } |
| 149 | |
| 150 | func (c *cfg) HTTPUnixSocket(hostname string) gh.ConfigEntry { |
| 151 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected