Resolving Git merge conflicts

git stash is perfectly legitimate, though as Greg said, for some reason fixing the conflicts can get strange. But they are still fixable, you won’t actually fubar anything. The command as I know to re-apply the stash is git stash apply, though pop may be an alternative that I’m not aware of (or it could … Read more

List modified file names in a git stash

The show sub-command, in the end, invokes git diff with whatever flags you have set, or –stat if you did not set any, so simply git stash show –name-only, which runs git diff –name-only between the base commit and the work-tree commit. (See here and here for a description of what I have taken to … Read more