-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Github ssh remote with non git user name (#52)
**Issue:** One of commercial projects on github uses remote origin url of the next format: `[email protected]:testcompany/testproject.git` Githubinator extension is failing with error `Could not find provider for repo` **Fix:** Change Github matcher to support any user name.
- Loading branch information
galaydaroman
authored
Oct 13, 2021
1 parent
0b0082f
commit 3db1d07
Showing
4 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ suite("Github", async () => { | |
for (let url of [ | ||
"[email protected]:recipeyak/recipeyak.git", | ||
"[email protected]:recipeyak/recipeyak", | ||
"[email protected]:recipeyak/recipeyak" | ||
]) { | ||
async function findRemote(hostname: string) { | ||
return url | ||
|
@@ -69,6 +70,7 @@ suite("Github", async () => { | |
for (let url of [ | ||
"[email protected]:recipeyak/recipeyak.git", | ||
"[email protected]:recipeyak/recipeyak", | ||
"[email protected]:recipeyak/recipeyak" | ||
]) { | ||
async function findRemote(hostname: string) { | ||
return url | ||
|