Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support rawquery in ssh (scp) transport #18

Merged
merged 1 commit into from
Aug 27, 2020
Merged

Conversation

isaaguilar
Copy link
Contributor

Hi Will, not sure the policy on PRs but I made some tweaks to accept RawQuery strings for the ssh transport. Hope this can help someone.

Before the update, this code did not produce a RawQuery output:

func main() {
	a, _ := giturls.Parse("[email protected]:org/repo.git?ref=abc/123")
	fmt.Println(a, "query:", a.RawQuery)
}

Results before this PR:

$ go run main.go
ssh://[email protected]/org/repo.git%3Fref=abc/123 query:

Results with changes in the PR:

$ go run main.go
ssh://[email protected]/org/repo.git?ref=abc/123 query: ref=abc/123

Cheers!

@whilp
Copy link
Owner

whilp commented Aug 27, 2020

Awesome -- LGTM.

@whilp whilp merged commit 014d3ef into whilp:master Aug 27, 2020
@whilp
Copy link
Owner

whilp commented Aug 27, 2020

Thanks for adding the go.mod as well!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants