Sahran Riaz
Sahran Riaz

Reputation: 11

Committing to github with RStudio

I cannot commit to my github repository with Rstudio.

I followed the correct syntax and tutorial. This is the error I am getting:

https://i.sstatic.net/8DeE5.png

Upvotes: 1

Views: 70

Answers (1)

Alessandro Candeloro
Alessandro Candeloro

Reputation: 1071

It looks like you need to config a global user.

try to run the command:

git config --global user.email "[your email]"
git congif --global user.name "[your username]"

Upvotes: 1

Related Questions