Git stash uncached: how to put away all unstaged changes?
问题 Suppose two set of changes are made in a project versioned by git. One set is staged and the other is not. I would like to recheck staged changes by running my project at this state (before commit). What is a simple way to put away all unstaged changes and leave only staged? So I need unstaged changes to disappear from my project, but to be stored somewhere for further work. This is sounds very much like git stash command. But git stash would put both unstaged and staged changes away from my