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

gittu

v1.0.10

Published

Fast and simple git operations CLI tool for developers. Streamline your git workflow with powerful commands and intuitive interface.

Readme

gittu 🚀

Make git operations faster and easier with simplified commands

A powerful CLI tool that streamlines your git workflow by combining multiple git operations into single, intuitive commands. Perfect for developers who want to speed up their daily git tasks with smart automation.

✨ Features

  • 🚀 Quick Operations: Add, commit, and push in one command
  • 🤖 Smart Automation: Auto-generated commit messages with file change detection
  • 🌅 Daily Workflow: Start your work day with latest updates
  • 📁 Auto .gitignore: Comprehensive .gitignore file generation
  • 🔧 Easy Setup: Initialize repositories with remote origin in seconds
  • 🛡️ Safe Operations: Checks for repository status before executing commands
  • ↩️ Undo Support: Easily undo commits while preserving changes

🛠️ Installation

Global Installation (Recommended)

npm install -g gittu

Local Installation

npm install gittu

🚀 Quick Start

# Initialize a new project
gittu init

# Add remote origin
gittu origin add https://github.com/username/repo.git

# Start your work day
gittu start

# Smart auto-commit
gittu auto

# Deploy changes
gittu deploy

📚 Commands

Daily Workflow Commands

| Command | Description | |---------|-------------| | gittu start | Start your work day (pull latest + status) | | gittu auto | Smart commit with auto-generated message | | gittu deploy | Deploy changes (commit + push to remote) | | gittu update | Update from remote (pull + auto-merge) | | gittu undo | Undo the last commit (keeps changes) |

Setup Commands

| Command | Description | |---------|-------------| | gittu init | Initialize git repository with comprehensive .gitignore | | gittu origin add <url> | Add or update remote origin URL |

Quick Operations

| Command | Description | |---------|-------------| | gittu quick [message] | Add + commit + push in one command | | gittu save [message] | Add + commit (no push) in one command | | gittu push | Push changes to remote repository | | gittu status | Show detailed repository status | | gittu help | Show detailed help and examples |

🤖 Smart Features

Auto-Generated Commit Messages

When using gittu auto or commands without messages, gittu analyzes your changes and creates intelligent commit messages:

  • File analysis: Detects added, modified, and deleted files
  • Smart counting: Shows exactly what changed
  • Timestamps: Includes current date for context

Examples:

gittu auto
# Creates: "Auto: 3 modified, 1 added - 2025-07-10"

gittu auto
# Creates: "Auto: 5 modified - 2025-07-10"

Intelligent Workflow

  • Work detection: Automatically saves uncommitted changes before updates
  • Branch awareness: Handles upstream setup automatically
  • Conflict handling: Graceful handling of merge conflicts
  • Safe operations: Validates repository state before actions

💡 Usage Examples

Daily Developer Workflow

# Morning routine
gittu start                    # Pull latest, check status

# During development
gittu auto                     # Quick smart commits
gittu save "WIP: new feature"  # Save work in progress

# End of day
gittu deploy                   # Deploy all changes

# If you made a mistake
gittu undo                     # Undo last commit

Project Setup

# Start a new project
mkdir my-project && cd my-project
gittu init
gittu origin add https://github.com/username/my-project.git

Smart Commits

# Auto-generated commit message based on changes
gittu auto

# Quick commit with custom message
gittu quick "feat: add user authentication"

# Save work without pushing
gittu save "WIP: working on feature"

🎯 Auto-generated .gitignore

When you run gittu init, it automatically creates a comprehensive .gitignore file:

| Category | Files Ignored | |----------|---------------| | Node.js | node_modules, npm logs, package-lock.json | | Build outputs | dist, build directories | | IDE files | .vscode, .idea, *.swp | | OS files | .DS_Store, Thumbs.db | | Environment | .env files | | Logs | *.log files | | Temporary files | tmp, temp directories | | Database files | *.db, *.sqlite | | Archives | *.zip, *.tar.gz |

📋 Requirements

| Requirement | Version | |-------------|---------| | Node.js | Version 14 or higher | | Git | Must be installed and accessible via command line | | npm | For package installation |

🌟 Why gittu?

  • Save Time: Reduce 3-4 git commands to just one
  • Smart Automation: Auto-generated commit messages based on actual changes
  • Reduce Errors: Automated workflows prevent common mistakes
  • Better DX: Focus on coding, not git command memorization
  • Consistent: Same commands work across all projects
  • Beginner Friendly: Simple commands with helpful feedback

📄 License

MIT License