Git log: Difference between revisions
Appearance
Created page with "== Commands == * display all commit log entries from ALL BRANCHES. Normally git log displays only the entries from the current branch ** git log --oneline --all * display the history in a simplified form ** git log --simplify-by-decoration --decorate --all --oneline" |
No edit summary |
||
| Line 1: | Line 1: | ||
== Commands == | == Commands == | ||
* show commit id and comment | |||
** git log --oneline | |||
* display all commit log entries from ALL BRANCHES. Normally git log displays only the entries from the current branch | * display all commit log entries from ALL BRANCHES. Normally git log displays only the entries from the current branch | ||
** git log --oneline --all | ** git log --oneline --all | ||
* display the history in a simplified form | * display the history in a simplified form | ||
** git log --simplify-by-decoration --decorate --all --oneline | ** git log --simplify-by-decoration --decorate --all --oneline | ||
Revision as of 08:43, 19 December 2025
Commands
- show commit id and comment
- git log --oneline
- display all commit log entries from ALL BRANCHES. Normally git log displays only the entries from the current branch
- git log --oneline --all
- display the history in a simplified form
- git log --simplify-by-decoration --decorate --all --oneline