Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Smartgit: Moving local changes from stash to branch

Tags:

git

smartgit

I have local changes which I have stored in stash. I have now (afterwards) created a new branch and want to push my changes from stash to this branch. SmartGit: Local > Apply stash.

When I try to SmartGit asks me: Restore Index (checkbox), what is this? Should I select it or not?

enter image description here

like image 261
OZZIE Avatar asked May 14 '13 12:05

OZZIE


1 Answers

The Restore Index option will result in a git stash apply --index. According to the git man page, this means:

If the --index option is used, then tries to reinstate not only the working tree’s changes, but also the index’s ones. However, this can fail, when you have conflicts (which are stored in the index, where you therefore can no longer apply the changes as they were originally).

So, in general, yes, you should try to apply the stash having this option enabled.

like image 62
mstrap Avatar answered Oct 03 '22 00:10

mstrap