We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
gert/R/fetch.R
Line 48 in 3d5e13b
Calling
gert::git_clone( url = "https://github.company.com/repo1", path = ".", password = "accessToken" )
does not work because the username is not provided to make_cred_cb (NA). By changing
gert/R/credentials.R
Line 40 in 3d5e13b
username <- "git"
Error in libgit2::git_clone : server requires authentication that we do not support
git2r::clone supports both via git2r::cred_token.
git2r::clone
git2r::cred_token
The text was updated successfully, but these errors were encountered:
replaced git2r by gert, not working currently due to issue with gert …
e3cf8c3
…and credentials, see r-lib/gert#145
No branches or pull requests
gert/R/fetch.R
Line 48 in 3d5e13b
Calling
does not work because the username is not provided to make_cred_cb (NA).
By changing
gert/R/credentials.R
Line 40 in 3d5e13b
username <- "git"
, this works with on-premise GitHub.However, it does not work with on-premise Gitlab, where it fails with:
git2r::clone
supports both viagit2r::cred_token
.The text was updated successfully, but these errors were encountered: