Is there a GUI for git stash?

When doing Git pull, I got the following error message:

>>> git pull
error: Your local changes to the following files would be overwritten by merge:
	code/code1.Rmd
	code/code2.Rmd
Please, commit your changes or stash them before you can merge.
Aborting
Updating 74cbea6..e5eebfa

I search online and found the commands. Is there a GUI in Rstudio to do the same? This way I don't need to remember the command or search online again.

git stash
git pull
git stash pop

I don't think RStudio IDE has the stash command behind a button inside Git pane.

You need to use another specific Git GUI if you don't like to play with command line.

There are some good git GUI available ! (GitExtension, sourcetree, fork, ...)

If you prefer R command, you also have the git2r package

There is function for almost all git command.

Hope it helps

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.