2 Commits
demo ... main

Author SHA1 Message Date
d1ee693044 Ignore local SSH notes 2026-01-24 21:23:44 +00:00
3fb8b9697a Clarify git capsule state meanings 2026-01-24 20:44:31 +00:00
2 changed files with 7 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.sshinfo.txt

View File

@@ -7,12 +7,12 @@ This file lists every prompt theme, color codes, design intent, and configuratio
What it is: a compact git status block shown on line 2 when you're inside a git repo.
It uses `__git_ps1` when available, with a safe fallback to `git rev-parse` for the branch.
States + emojis:
- Clean repo: ✨
- Dirty working tree: 🔨
- Staged changes: 📌
- Untracked files: 🧷
- Stashed changes: 📦
States + emojis (plain language):
- Clean repo: ✨ no local changes; your files match the last commit
- Dirty working tree: 🔨 you edited tracked files but havent staged them yet
- Staged changes: 📌 changes are staged and ready to commit
- Untracked files: 🧷 new files git hasnt started tracking
- Stashed changes: 📦 work saved with `git stash` (not in your working tree)
How it works:
- The capsule only renders when a repo is detected (no extra noise outside git).