MCPcopy Create free account
hub / github.com/cli/cli / sshKeyUpload

Function sshKeyUpload

pkg/cmd/auth/shared/login_flow.go:239–247  ·  view source on GitHub ↗
(httpClient *http.Client, hostname, keyFile string, title string)

Source from the content-addressed store, hash-verified

237}
238
239func sshKeyUpload(httpClient *http.Client, hostname, keyFile string, title string) (bool, error) {
240 f, err := os.Open(keyFile)
241 if err != nil {
242 return false, err
243 }
244 defer f.Close()
245
246 return add.SSHKeyUpload(httpClient, hostname, f, title)
247}
248
249// GetCurrentLogin returns the login of the user the token belongs to.
250//

Callers 1

LoginFunction · 0.85

Calls 3

SSHKeyUploadFunction · 0.92
OpenMethod · 0.80
CloseMethod · 0.65

Tested by

no test coverage detected