Git Cheatsheet - Quick Git Command Reference
Quick reference for common Git commands. Search, copy, and use Git commands instantly.
git log
Show commit logs
Syntax
git log [options] [<revision-range>]Common Options
| Option | Description |
|---|---|
--oneline | Compact one-line format |
--graph | Graphical branch history |
--all | Show all branches |
--decorate | Show refs (branches, tags) |
--stat | Show change statistics |
-n <number> | Show last n commits |
--author=<name> | Filter by author |
--since=<date> | Filter by since date |
--grep=<pattern> | Filter by commit message pattern |
-S <string> | Search code changes |
-p | Show patch diff per commit |
--pretty=<format> | Custom output format |
Examples
git logView full commit history
git log --oneline --graph --allGraphical all-branch history
git log --author="John" --since="1 week ago"Commits by John in last week
git log -S "keyword"Find commits that added keyword
git log --grep="fix"Commits with "fix" in message
Related Tools
More Code & Dev Tools
Color Converter
Free online color converter. Convert between HEX, RGB, HSL, ...
cURL Command Builder
Build cURL commands visually. Set URL, method, headers, body...
Systemd Service Generator
Generate systemd service unit files visually. Configure Exec...
Color Palette Generator
Generate harmonious color palettes online. Create color sche...
SQL Formatter
Format and beautify SQL queries online. Improve SQL readabil...
Color Contrast Checker
Check color contrast ratios for WCAG compliance. Ensure acce...
Port Checker
Check if a port is open online. Test port availability and c...
CSS Formatter
Format and minify CSS online. Beautify CSS code or compress ...
IP Calculator
Calculate IP ranges, subnet masks, and CIDR notation. Networ...
Docker Compose Generator
Generate Docker Compose YAML files visually. Add services, c...
WebSocket Tester
Test WebSocket connections and messages in real-time. Connec...
DNS Lookup
Query DNS records online. Look up A, AAAA, CNAME, MX, TXT, N...