mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 03:22:08 +02:00

* git subtree: make language inclusive * git revert: make language inclusive * git rev-list: make language inclusive * git request-pull: make language inclusive * git rebase: make language inclusive * git revert/es: make language inclusive * git rev-list/es: make language inclusive * git rebase/es: make language inclusive * git-rebase/es: improve language Co-authored-by: Marco Bonelli <marco@mebeim.net> * git-rebase/es: improve language Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Update git-rebase.md * git-subtree: revise example description * git-rebase/es: translate branch_name Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Update git-rebase.md * Update git-rev-list.md * Update pages.es/common/git-revert.md Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Apply suggestions from code review Co-authored-by: Waldir Pimenta <waldyrious@gmail.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: Axel Navarro <navarroaxel@gmail.com> Co-authored-by: Waldir Pimenta <waldyrious@gmail.com>
16 lines
426 B
Markdown
16 lines
426 B
Markdown
# 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:
|
|
|
|
`git rev-list --since={{'2019-12-01 00:00:00'}} {{branch_name}}`
|
|
|
|
- List all merge commits on a specific commit:
|
|
|
|
`git rev-list --merges {{commit}}`
|