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.

Can git do a diff of the working copy with stash

How can I diff my current working copy against a stash? My use case: my working copy already contains a …

git git-diff git-stash working-copy
Is it possible to use git stash command from Visual Studio

I'm using Visual Studio 2017's Team Explorer to work with a git repository. Every time I'm uses the git stash …

git visual-studio git-stash
git - errors after merge conflicts during stash pop

Original title: git - update all files that have not been changed Currently I am trying to update all files …

git git-stash
automatically stash save/pop changes on git rebase?

my git workflow uses rebase a lot. I always fetch upstream changes (the main repo i forked from) and then …

git git-stash
Why isn't the git stash unique per branch?

I suppose it allows for moving changes from one branch to the next but that's what cherry picking is for …

git git-stash
Change Git stash message

I have a stash saved for the future that I want to give a meaningful name. While it's possible to …

git git-stash
Is git stash stack pushed to the remote repo?

Is my stash stack pushed to the remote repo? Or is it completely ignored? I'm just curious if I should …

git git-stash
`git stash` during a merge conflict

We've done something bad. We ran git stash save during a merge conflict, and now we can't restore our work. …

git merge git-merge git-stash merge-conflict-resolution
Stash selected files with Git Extensions

Is there a way with Git Extensions to only stash some of the uncommitted files? Say I have three files …

git git-extensions git-stash
'git stash apply' with Interactive Mode

I have a serie of files into a stash (stash{0}) and I would like to git apply just some parts/…

git git-stash chunks interactive-mode