Difference between revisions of "Template:Git log TOC"
Jump to navigation
Jump to search
↑ https://stackoverflow.com/a/31306082
↑ https://stackoverflow.com/a/9597462
(Created page with "* <code>git log</code> * <code>git log -1</code> * <code>git log -p</code> * <code>git log --all</code> * <code>git log --oneline</code> * <code>git log...") |
Tags: Mobile web edit, Mobile edit |
||
(One intermediate revision by one other user not shown) | |||
Line 4: | Line 4: | ||
* <code>[[git log --all]]</code> | * <code>[[git log --all]]</code> | ||
* <code>[[git log --oneline]]</code> | * <code>[[git log --oneline]]</code> | ||
+ | * <code>[[git log -p -- filename]]</code> | ||
* <code>git log --pretty=format:"%h - %an, %ar on %cd: %s"</code> | * <code>git log --pretty=format:"%h - %an, %ar on %cd: %s"</code> | ||
* Show modifications to a file:<code>git log --follow -p FILE_TO_SHOW</code><ref>https://stackoverflow.com/a/31306082</ref> or <code>[[git blame]] FILE_TO_SHOW</code> | * Show modifications to a file:<code>git log --follow -p FILE_TO_SHOW</code><ref>https://stackoverflow.com/a/31306082</ref> or <code>[[git blame]] FILE_TO_SHOW</code> | ||
Line 9: | Line 10: | ||
* List developers: <code>git shortlogs -sne</code><ref>https://stackoverflow.com/a/9597462</ref> | * List developers: <code>git shortlogs -sne</code><ref>https://stackoverflow.com/a/9597462</ref> | ||
* <code>git log --tags --simplify-by-decoration --pretty="format:%ci %d"</code> | * <code>git log --tags --simplify-by-decoration --pretty="format:%ci %d"</code> | ||
+ | * <code>[[git log -p --all -S]]</code> |
Latest revision as of 08:31, 28 March 2023
git log
git log -1
git log -p
git log --all
git log --oneline
git log -p -- filename
git log --pretty=format:"%h - %an, %ar on %cd: %s"
- Show modifications to a file:
git log --follow -p FILE_TO_SHOW
[1] orgit blame FILE_TO_SHOW
git shortlog
- List developers:
git shortlogs -sne
[2] git log --tags --simplify-by-decoration --pretty="format:%ci %d"
git log -p --all -S
Advertising: