Reputation: 11
I cannot commit to my github repository with Rstudio.
I followed the correct syntax and tutorial. This is the error I am getting:
Upvotes: 1
Views: 70
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