Install all git power tools at once. One package, four superpowers.
git-enhanced is a meta-package -- it has no code of its own. It simply installs four standalone git CLI tools as dependencies so you can get them all with a single command.
npm install -g git-enhancedThis installs all of the following tools as global commands:
| Command | Package | What it does |
|---|---|---|
git who |
git-who-cli | Find who knows a file or codebase best |
git standup |
git-standup-cli | What did I do yesterday? |
git nuke |
git-nuke-cli | Delete a branch everywhere |
git undo |
smart-git-undo | Smart undo for any git operation |
Each tool is its own standalone package. Install only what you need:
npm install -g git-who-cli
npm install -g git-standup-cli
npm install -g git-nuke-cli
npm install -g smart-git-undoMIT