git-stash · git:20260712.e55f142 · 2026-07-12 · sha256 a029ad2686949817

git-stash git:20260712.e55f142A

Immutable. This exact content is served forever at /api/v1/blob/a029ad2686949817.

---
name: git-stash
description: Temporarily stash changes and manage the stash list.
---

# Git Stash Skill

Save uncommitted work temporarily and reapply it later.

## Capabilities
- Stash changes: `git stash push -m "message"` or `git stash save`
- Stash including untracked: `git stash -u` or `--include-untracked`
- Stash including all files: `git stash --all`
- List stashes: `git stash list`
- Pop stash: `git stash pop` (apply + drop)
- Apply stash: `git stash apply stash@{n}`
- Drop stash: `git stash drop stash@{n}`
- Show stash diff: `git stash show -p stash@{n}`
- Create branch from stash: `git stash branch <branch> stash@{n}`
- Clear all stashes: `git stash clear`

## Usage
Triggered when user says "stash", "save my changes", "temporarily put aside", "pop stash".
Use `run_command` with `git stash` subcommands.