-
Notifications
You must be signed in to change notification settings - Fork 154
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
install_git
removes the "@" from the url
#646
Comments
Take the regexp from https://github.com/r-lib/remotes/blame/37f5c96f442a8b7696e024dd6badfa83048067fd/R/install-git.R#L82 and try it out:
|
Works with v2.3.0: > url <- "ssh://[email protected]:7999/proj/name.git"
> remotes:::git_remote(url)
$url
[1] "ssh://[email protected]:7999/proj/name.git"
$subdir
NULL
$ref
NULL
$credentials
NULL
attr(,"class")
[1] "git2r_remote" "remote" Doesn't work in dev nor the released CRAN version v2.4.0: > url <- "ssh://[email protected]:7999/proj/name.git"
> remotes:::git_remote(url)
$url
[1] "ssh://git"
$subdir
NULL
$ref
[1] "git.host.com:7999/proj/name.git"
$credentials
NULL
attr(,"class")
[1] "git2r_remote" "remote" Thus |
This issue was fixed in #658, and should be closed. |
Hello,
I'm using Windows 10 and I'm trying to install a package from Azure DevOps.
Observe the warning message in
system
: the "@" has been replaced with a white space.The text was updated successfully, but these errors were encountered: