How would I extract a single file (or changes to a file) from a git stash?
On the git stash manpage you can read (in the “Discussion” section, just after “Options” description) that: A stash is represented as a commit whose tree records the state of the working directory, and its first parent is the commit at HEAD when the stash was created. So you can treat stash (e.g. stash@{0} is … Read more