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
usethis::use_git()
usethis::use_github()
#TODO: how to deal with errors
If use_github gets an authentication error, then switch to terminal and use git directly: git push origin master
use_github
git push origin master
https://community.rstudio.com/t/difficulty-using-usethis-use-github/5579
The text was updated successfully, but these errors were encountered:
This solution works for me:
cred <- git2r::cred_ssh_key( publickey = "~/../.ssh/id_rsa.pub", privatekey = "~/../.ssh/id_rsa" ) use_github(credentials = cred)
http://happygitwithr.com/ssh-keys.html#git2r-or-some-other-tool-cant-find-ssh-keys-on-windows
Sorry, something went wrong.
No branches or pull requests
Connect to GitHub
usethis::use_git()
usethis::use_github()
#TODO: how to deal with errors
If
use_github
gets an authentication error, then switch to terminal and use git directly:git push origin master
https://community.rstudio.com/t/difficulty-using-usethis-use-github/5579
The text was updated successfully, but these errors were encountered: