npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

smart-git-undo

v1.0.0

Published

Smart CLI tool — type 'git undo' and it figures out what you probably want to undo

Downloads

107

Readme

smart-git-undo

A smart CLI tool that figures out what you probably want to undo. Just type git undo.

No flags to remember, no man pages to read. It looks at your recent git state and does the right thing.

What it does

$ git commit -m "whoops"
$ git undo

🔍 Detected: Revert commit a1b2c3d ("whoops")
   Type: commit

✅ Reverted commit a1b2c3d ("whoops"). Changes are preserved in your working tree.

It detects and undoes these situations:

| You just did... | git undo will... | |---|---| | git add files | Unstage them | | Started a merge with conflicts | git merge --abort | | Completed a rebase | Restore pre-rebase state from reflog | | Merged a branch | Undo the merge commit | | Deleted a branch | Restore it from reflog | | Made a commit | Soft reset (keeps your changes) |

Detection is prioritized in that order — if you staged files and also have a recent commit, it unstages first.

Install

npm install -g smart-git-undo

Or run without installing:

npx smart-git-undo

Once installed, git finds it automatically as a subcommand:

git undo          # undo the last thing
git redo          # went too far? redo it
git undo --dry-run    # see what it would do without doing it
git undo --history    # see your undo/redo history

Usage

Undo

git undo

Analyzes your recent git state and performs the most likely undo. Commits are soft-reset so your changes stay in the working tree.

Dry run

git undo --dry-run

Shows what would be undone and the exact git command, without changing anything.

👁️  Dry run — nothing will be changed

🔍 Detected: Revert commit a1b2c3d ("bad commit")
   Type: commit

   Would execute: git reset --soft HEAD~1

Redo

git redo

Reverses the last undo. Useful when you undo too far.

History

git undo --history

Shows your full undo/redo timeline:

📜 Undo/Redo History

   Actions (newest first):
   ↪️  Redo: Reverted commit a1b2c3d: "bad commit" — 4/2/2026, 3:21:00 PM
   ↩️  Reverted commit a1b2c3d: "bad commit" — 4/2/2026, 3:20:58 PM

How it works

  1. Detector (src/detector.js) checks git state in priority order: staged files → in-progress merge → recent rebase → merge commit → deleted branch → recent commit
  2. Actions (src/actions.js) performs the undo safely — commits use soft reset to preserve changes, merges and rebases use hard reset
  3. Stack (src/stack.js) records every undo in .git/undo-stack/stack.json so redo and history work across sessions

The undo stack lives inside .git/ so it's per-repo and never gets committed.

Platform support

  • macOS — supported
  • Linux — supported
  • Windows — should work in Git Bash / WSL (not tested)

License

MIT