AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Parse and visualize git log output with commit graph, branch structure, and customizable display format.
Tip: run git log --all --oneline --graph --decorate in your terminal and paste the output above.
Paste git log output above or click "Load Sample" to see formatted results.
git log --oneline --graph — branch graph + short hash + messagegit log --oneline — plain short loggit log --pretty=format:"..." — custom formatGit log formatting transforms the output of git log commands into visually structured views that make commit history easier to understand. The raw git log output — especially with branch graphs — can be dense and hard to read. This tool parses that output and presents it in multiple formats: a visual graph view with colored branch lines, a compact list view, a detailed view with author and date information, and raw parsed data for debugging.
Developers use this tool to visualize repository history, understand branching and merging patterns, review commit sequences, and share formatted logs with team members. It supports input from git log --all --oneline --graph --decorate and other common format options.
git log --all --oneline --graph --decorate in your repository.The tool works best with git log --all --oneline --graph --decorate. You can also use git log --oneline for a simpler format, or custom --pretty=format:"..." outputs.
Four modes: Graph View shows colored branch lines and commit nodes; Compact View shows a condensed list; Detailed View includes author, date, and refs; Raw Parsed Data shows the parsed commit objects for debugging.
Yes. The Color Scheme dropdown offers Auto (branch-based coloring), Rainbow (rotating colors), and Monochrome (single color) options.
No. All parsing and formatting is performed locally in your browser. Your git log data never leaves your device.
Yes. Click "Copy Output" to copy the formatted result to your clipboard, or "Export .txt" to download it as a text file.
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026