log
Display the change history of the repository as a tree of parent/child relationships.
The log shows:
- Change names (automatically generated memorable identifiers)
- Descriptions of what changed and why
- Parent/child relationships between changes
- Bookmarks pointing to specific changes
- The currently checked-out change (marked with *)
Unlike Git’s linear log, Pogo’s log shows the true tree structure of your repository, making it easy to see branches and merges. Changes are shown from newest to oldest by default.
pogo log
--color
: Enable colored output (default:true
)--number
,-n
: Maximum number of changes to display (default: 10
)
Examples
Section titled “Examples”# Show the last 10 changes (default)pogo log
# Show the last 50 changespogo log -n 50
# Disable colored outputpogo log --color=false