How to update github repo using golem? #681
Answered
by
ColinFay
Dobrokhotov1989
asked this question in
Q&A
-
This is more a question than an issue. I'm building my first shiny app using |
Beta Was this translation helpful? Give feedback.
Answered by
ColinFay
Jun 4, 2021
Replies: 1 comment
-
Hey @Dobrokhotov1989, You can push to your repository using the following commands in your terminal: git add *
git commit -m "message"
git push origin master You can also use a package like You can read this very good guide about git and R if you want to learn more :) Cheers, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Dobrokhotov1989
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @Dobrokhotov1989,
You can push to your repository using the following commands in your terminal:
You can also use a package like
{git2r}
to do this, or via the RStudio Git panel.You can read this very good guide about git and R if you want to learn more :)
https://happygitwithr.com/
Cheers,
Colin