fix(rig): suggest SSH URL when HTTPS auth fails (#577)

When `gt rig add` fails due to GitHub password auth being disabled,
provide a helpful error message that:
- Explains that GitHub no longer supports password authentication
- Suggests the equivalent SSH URL for GitHub/GitLab repos
- Falls back to generic SSH suggestion for other hosts

Also adds tests for the URL conversion function.

Fixes #548

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Erik LaBianca
2026-01-16 18:28:51 -05:00
committed by GitHub
parent 301a42a90e
commit 9b34b6bfec
2 changed files with 101 additions and 2 deletions

View File

@@ -690,3 +690,56 @@ func TestSplitCompoundWord(t *testing.T) {
})
}
}
func TestConvertToSSH(t *testing.T) {
tests := []struct {
name string
https string
wantSSH string
}{
{
name: "GitHub with .git suffix",
https: "https://github.com/owner/repo.git",
wantSSH: "git@github.com:owner/repo.git",
},
{
name: "GitHub without .git suffix",
https: "https://github.com/owner/repo",
wantSSH: "git@github.com:owner/repo.git",
},
{
name: "GitHub with org/subpath",
https: "https://github.com/myorg/myproject.git",
wantSSH: "git@github.com:myorg/myproject.git",
},
{
name: "GitLab with .git suffix",
https: "https://gitlab.com/owner/repo.git",
wantSSH: "git@gitlab.com:owner/repo.git",
},
{
name: "GitLab without .git suffix",
https: "https://gitlab.com/owner/repo",
wantSSH: "git@gitlab.com:owner/repo.git",
},
{
name: "Unknown host returns empty",
https: "https://bitbucket.org/owner/repo.git",
wantSSH: "",
},
{
name: "Non-HTTPS URL returns empty",
https: "git@github.com:owner/repo.git",
wantSSH: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := convertToSSH(tt.https)
if got != tt.wantSSH {
t.Errorf("convertToSSH(%q) = %q, want %q", tt.https, got, tt.wantSSH)
}
})
}
}