{{define "content" -}}

Dolt keys

{{if .Error}}
{{.Error}}
{{end}} {{if .Notice}}
{{.Notice}}
{{end}}

Associate a dolt Ed25519 credential to clone and push without a personal access token, like a git SSH key. Run:

dolt creds new
dolt login --auth-endpoint {{doltHost .SelfOrigin}} --login-url {{.SelfOrigin}}/settings/keys

dolt login opens this page with your public key in the URL; the field below is filled in automatically. Without JavaScript, paste the pub key value the command printed.

Your keys

{{if .Keys}} {{range .Keys}} {{end}}
Key IDCommentAddedLast used
{{.KID}} {{.Comment}} {{.Created | reltime}} {{if .LastUsed}}{{.LastUsed | reltime}}{{else}}never{{end}}
{{else}}

No keys registered.

{{end}} {{- end}}