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