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
'git2r_clone'
Hi,
I try to use {git2r} to clone a repository.
{git2r}
But I encountered an issue:
> library("git2r") > git_dir <- file.path(tempdir(), "antiword") > clone("https://github.com/ropensci/antiword", git_dir) cloning into 'C:\Users\UTZK0M\AppData\Local\Temp\RtmpK6C6dF/antiword'... Error in clone("https://github.com/ropensci/antiword", git_dir) : Error in 'git2r_clone': failed to send request: Impossible d’établir une connexion avec le serveur
However, when I try to clone with the system() function, I get no error and it works:
system()
> system("git clone https://github.com/ropensci/antiword") Cloning into 'antiword'... [1] 0
Do I have to configure something additionally?
Thank you
The text was updated successfully, but these errors were encountered:
Error in 'git2r_clone'
No branches or pull requests
Hi,
I try to use
{git2r}
to clone a repository.But I encountered an issue:
However, when I try to clone with the
system()
function, I get no error and it works:Do I have to configure something additionally?
Thank you
The text was updated successfully, but these errors were encountered: