2019-12-17 20:31:17 +00:00
|
|
|
# git rev-list
|
|
|
|
|
|
|
|
> List revisions (commits) in reverse chronological order.
|
|
|
|
> More information: <https://git-scm.com/docs/git-rev-list>.
|
|
|
|
|
|
|
|
- List all commits on the current branch:
|
|
|
|
|
|
|
|
`git rev-list {{HEAD}}`
|
|
|
|
|
|
|
|
- List commits more recent than a specific date, on a specific branch:
|
|
|
|
|
2020-10-06 17:48:57 +01:00
|
|
|
`git rev-list --since={{'2019-12-01 00:00:00'}} {{master}}`
|
2019-12-17 20:31:17 +00:00
|
|
|
|
|
|
|
- List all merge commits on a specific commit:
|
|
|
|
|
|
|
|
`git rev-list --merges {{commit}}`
|