Quick Actions
git log
Description
Show commit logs.
Command
git log
Examples
Show commit history
git log
One line format
git log --oneline
Graph view
git log --graph --oneline
Filter by author
git log --author="John Doe"
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
--oneline |
string | No | One line per commit |
--graph |
string | No | Show branch graph |
--author |
string | No | Filter by author |
--since |
string | No | Show commits since date |
Command Info
Category:
Information
Type:
Git
Views:
7
Status:
Active
Tags
log
history
commits