Git Log Formatter
Build custom, clean, and professional one-line or decorated git log format commands interactively.
git log --graph --color --pretty=format:"%h%d %s (%ar by %an)"
Tip: Set this up as a global alias for quick access:
git config --global alias.lg "..."
Common Placeholder Codes
1. Hashes & Refs
%H (full hash), %h (short hash), %d (branch/tag ref decorations).
2. Authors & Comitters
%an (author name), %ae (author email), %ad (author date).
3. Messages
%s (subject line summary), %b (commit body descriptions).