|
10 | 10 | "http://git.mycompany.com/username/myproject.git",
|
11 | 11 | ParsedGitUrl("http", "git.mycompany.com", "username", "myproject"),
|
12 | 12 | ),
|
| 13 | + ( |
| 14 | + "http://subsubdomain.subdomain.company-net.com/username/myproject.git", |
| 15 | + ParsedGitUrl("http", "subsubdomain.subdomain.company-net.com", "username", "myproject"), |
| 16 | + ), |
13 | 17 | (
|
14 | 18 | "https://github.com/username/myproject.git",
|
15 | 19 | ParsedGitUrl("https", "github.com", "username", "myproject"),
|
|
22 | 26 | "https://git.mycompany.com:4443/username/myproject.git",
|
23 | 27 | ParsedGitUrl("https", "git.mycompany.com:4443", "username", "myproject"),
|
24 | 28 | ),
|
| 29 | + ( |
| 30 | + "https://subsubdomain.subdomain.company-net.com/username/myproject.git", |
| 31 | + ParsedGitUrl("https", "subsubdomain.subdomain.company-net.com", "username", "myproject"), |
| 32 | + ), |
25 | 33 | (
|
26 | 34 | "git://host.xz/path/to/repo.git/",
|
27 | 35 | ParsedGitUrl("git", "host.xz", "path/to", "repo"),
|
|
34 | 42 | "[email protected]:username/myproject.git",
|
35 | 43 | ParsedGitUrl("ssh", "[email protected]", "username", "myproject"),
|
36 | 44 | ),
|
| 45 | + ( |
| 46 | + "[email protected]:username/myproject.git", |
| 47 | + ParsedGitUrl("ssh", "[email protected]", "username", "myproject"), |
| 48 | + ), |
37 | 49 | (
|
38 | 50 | "ssh://[email protected]:3759/myproject.git",
|
39 | 51 | ParsedGitUrl("ssh", "[email protected]", "3759", "myproject"),
|
|
46 | 58 | "ssh://[email protected]:7999/username/myproject.git",
|
47 | 59 | ParsedGitUrl("ssh", "[email protected]:7999", "username", "myproject"),
|
48 | 60 | ),
|
| 61 | + ( |
| 62 | + "ssh://[email protected]:username/myproject.git", |
| 63 | + ParsedGitUrl("ssh", "[email protected]", "username", "myproject"), |
| 64 | + ), |
49 | 65 | (
|
50 | 66 | "git+ssh://[email protected]:username/myproject.git",
|
51 | 67 | ParsedGitUrl("ssh", "[email protected]", "username", "myproject"),
|
|
0 commit comments