Git Stash Tips
Aug 29, 2022 ยท 2 min read ยท Show Stash Diff To see the difference between the current code and some stash's entry, you can run the following: git stash show -p You can specify a stash index too: // git stash list stash@{0}: First entry stash@{1}: Second entry stash@{2}: Third ...
Join discussion