You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

gitglow

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitglow

Make your git history beautiful - emoji commits, pretty logs, and aesthetic workflows

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
2
-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

✨ gitpretty

Make your git history beautiful

npm License: MIT PRs Welcome

git log --oneline

Before: 😴

a1b2c3d Update stuff
e4f5g6h Fix thing
i7j8k9l Add feature

After:

a1b2c3d ✨ Add user authentication
e4f5g6h 🐛 Fix login validation  
i7j8k9l 📝 Update documentation

🚀 Quick Start

# Clone gitpretty
git clone https://github.com/nirholas/gitpretty.git

# Make your repo beautiful
./gitpretty/emoji-file-commits.sh /path/to/your-repo

# Push and admire on GitHub ✨
cd /path/to/your-repo && git push

Result: Every file shows a unique emoji in GitHub's file browser!

🛠️ Tools

Core Scripts

ScriptDescription
emoji-file-commits.shAdd emojis visible in GitHub
emoji-commits.shSafe mode (empty commits)

Git Workflow

ScriptExample
emoji-commit.sh"add auth"✨ Add auth
emoji-branch.shfeature loginfeature/login
emoji-merge.shfeature/auth✨ Merge feature: auth
emoji-stash.shsave wip "testing"🚧 testing
emoji-log.shgraph / today / week
emoji-tag.shv1.0.0 minor✨ v1.0.0
emoji-hooks.shAuto-emoji all commits

GitHub Actions

WorkflowTrigger
emoji-commits.ymlAuto-beautify on push
commit-lint.ymlValidate PR commits
changelog.ymlAuto changelog on release

💬 Smart Commits

./scripts/emoji-commit.sh "add dashboard"
# → ✨ Add dashboard

./scripts/emoji-commit.sh "fix login bug"
# → 🐛 Fix login bug

./scripts/emoji-commit.sh "update readme"
# → 📝 Update readme

Auto-detection:

KeywordEmojiKeywordEmoji
add, featfix, bug🐛
docs📝style💄
refactor♻️test
config⚙️security🔐
deploy🚀remove🗑️

🪝 Auto-Emoji Hooks

# Install once
./scripts/emoji-hooks.sh install

# Every commit gets auto-emoji!
git commit -m "add feature"
# 🪝 Auto-added: ✨
# ✨ Add feature

📜 Pretty Logs

./scripts/emoji-log.sh graph    # ASCII graph
./scripts/emoji-log.sh today    # Today's commits
./scripts/emoji-log.sh week     # This week by day
./scripts/emoji-log.sh author   # Group by author

📦 Stash Management

./scripts/emoji-stash.sh save wip "working on auth"
# → 🚧 working on auth

./scripts/emoji-stash.sh list
# Beautiful stash list with emojis
TypeEmojiTypeEmoji
wip🚧experiment🧪
tempbackup🔐
idea💡debug🔍

⚙️ Git Aliases

Add to ~/.gitconfig:

[alias]
    pretty = "!~/.gitpretty/scripts/emoji-commit.sh"
    pl = "!~/.gitpretty/scripts/emoji-log.sh"
    ps = "!~/.gitpretty/scripts/emoji-stash.sh"

Usage:

git pretty "add feature"  # ✨ Add feature
git pl graph              # Pretty log graph
git ps list               # Pretty stash list

📚 Docs

📄 License

MIT

git pretty ✨ make it beautiful

Keywords

git

FAQs

Package last updated on 07 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts