Abiram
Abiram

Reputation: 101

How to merge git branches in RStudio

I am a beginner to Git and GitHub. I came across tutorials on working with Git using RStudio. Instead of working from git bash RStudio offers a GUI type connection with Git and Github. Can someone tell me whether is it possible to merge git branches in RStudio? If so, how to do that?

Thank you :)

Upvotes: 10

Views: 8086

Answers (1)

Jagge
Jagge

Reputation: 978

I don't think that you can do that directly from the GUI of Rstudio.

You can (in Rstudio) go to GIT -> More -> Shell and perform the commands, but this is similar to just working from git bash.

(fatherly advice: learn git from the command line, it will benefit you in the long run, when you have to deal with more serious git-issues)

Upvotes: 12

Related Questions