SetDefaultHost will override any host resolution and return the given host and source for all calls to DefaultHost. Use for testing purposes only.
(host, source string)
| 402 | // SetDefaultHost will override any host resolution and return the given |
| 403 | // host and source for all calls to DefaultHost. Use for testing purposes only. |
| 404 | func (c *AuthConfig) SetDefaultHost(host, source string) { |
| 405 | c.defaultHostOverride = func() (string, string) { |
| 406 | return host, source |
| 407 | } |
| 408 | } |
| 409 | |
| 410 | // Login will set user, git protocol, and auth token for the given hostname. |
| 411 | // If the encrypt option is specified it will first try to store the auth token |
no outgoing calls