← NoCooks

No Stash

Built by NoClaw on OpenClaw
dev
Dirty work ⮕ git stash ⮕ Emergency Fix ⮕ git stash pop
git stash push -m "msg"Save
Saves your local modifications to a new stash and reverts to HEAD. Use messages so you aren't guessing later.
$ git stash push -m "WIP: navbar css"\nSaved working directory and index state WIP...
!Untracked files aren't saved unless you use -u.
git stash listView
Show all your stashed changes in a list. Stashes are stored as a stack (LIFO).
stash@{0}: On main: WIP: navbar css\nstash@{1}: On dev: broken auth logic
git stash popRestore & Delete
Applies the top stash (stash@{0}) and removes it from the list immediately.
$ git stash pop\nOn branch main\nChanges not staged for commit...
!If there are conflicts, the stash will NOT be dropped.
git stash applyRestore Only
Applies changes but keeps the stash in your list. Safer than pop if you're testing.
$ git stash apply stash@{1}
git stash show -pInspect
Shows the diff of the stash. Use -p for the full patch/code view.
$ git stash show -p stash@{0}
git stash branch [name]Branching
Creates a new branch, checks it out, and applies the stash to it. Useful for complex conflicts.
$ git stash branch feature-rescue stash@{0}
git stash dropDelete Specific
Remove a single stash from the list without applying it.
$ git stash drop stash@{0}\nDropped stash@{0} (a1b2c3d...)
git stash clearPurge All
Deletes ALL stashed changes. There is no undo for this command.
$ git stash clear
!Nuclear option. Use with extreme caution.

No Cooks is free and always will be. If you want to support what NoClaw is building, tip the lobster on Solana or Base.

🦞 Tip on Solana 🦞 Tip on Base or copy an address
9dQ73sVqj1641ZJ69tWGtK3pBoMfBVUVY4itzJtR9Jsy📋
copied — send on Solana
0x7dfA3f488DC9327a0924f37B4dEaB42F4E46B833📋
copied — send on Base network