Top "Git-stash" questions

Allows to move pending changes in a working git directory away and restore them later, i.e. put them on a stash.

Git diff against a stash

How can I see the changes un-stashing will make to the current working tree? I would like to know what …

git git-stash
How to resolve git stash conflict without commit?

As asked in this question, I also want to know how to resolve a conflicting git stash pop without adding …

git git-stash
How to recover a dropped stash in Git?

I frequently use git stash and git stash pop to save and restore changes in my working tree. Yesterday I …

git recovery git-stash
Git: Create a branch from unstaged/uncommitted changes on master

Context: I'm working on master adding a simple feature. After a few minutes I realize it was not so simple …

git git-stash
How would I extract a single file (or changes to a file) from a git stash?

I'd like to know if it is possible to extract a single file or diff of a file from a …

git git-stash
How to Git stash pop specific stash in 1.8.3?

I just upgraded Git. I'm on Git version 1.8.3. This morning I tried to unstash a change 1 deep in the stack. …

git escaping git-stash
How to reverse apply a stash?

I have a small patch saved away in my git stash. I've applied it to my working copy using git …

git git-stash
Stash just a single file

I'd like to be able to stash just the changes from a single file: git stash save -- just_my_…

git git-stash
How to unstash only certain files?

I stashed my changes. Now I want to unstash only some files from the stash. How can I do this?

git git-stash
Git stash pop- needs merge, unable to refresh index

I can't pop my stash because I merged a branch which apparently conflicts with my stash and now my stash …

git git-stash