Skip to main content

Git Stash Manager

v1.0.3

Generate stash command workflows for temporary work management.

Generates stash command workflows for temporary work management — stash by name, apply specific stash items, list and inspect stashes, and clean stash list commands.

How to use
  • Select the stash operation you need from the list.
  • The tool generates the right git stash commands with the correct syntax.
  • Use named stashes (git stash push -m "name") to manage multiple work-in-progress sets.
Stash Commands
# Save current work to stash
git stash push -m "wip-feature"

# Verify stash was created
git stash list