Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Well it was easier than I thought: git diff stash A note about the direction: This will show things which are present in the working directory but not present in the stash as added +. And vice ...
Answer
#1: Initial revision
Well it was easier than I thought: ```bash git diff stash ``` A note about the direction: This will show things which are present in the working directory but not present in the stash _as added_ `+`. And vice versa with removed things. If this sounds counterintuitive, you can reverse it with the [`-R`](https://www.git-scm.com/docs/git-diff#Documentation/git-diff.txt--R) flag.