第 3 章 Git and Github
3.1 Git and R
Install git
Under RStudio terminal
$ which git
to obtain the recognized path to your git installation.Copy that path to RStudio::Tools-> Global Options… -> Git/SVN -> git executable
Continued from 3; then Create RSA key.
3.2 Introduce yourself to git
library(usethis)
use_git_config(user.name = "Jane Doe", user.email = "jane@example.org")