mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00

* git-prune: add it translation * git-reflog: add it translation * git-remote: add it translation * git-repack: add it translation * git-restore: add it translation * git-rev-parse: add it translation * git-rev-list: add it translation * git-rm: add it translation * git-rebase: add it translation * git-revert: add it translation * git-reset: add it translation * git-replace: add it translation * git-reset: separate file tokens * Use correct suffix for multiple tokens Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Integrate updates in #4533 Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
471 B
471 B
git rev-list
Elenca le revisioni (commit) in ordine cronologico inverso. Maggiori informazioni: https://git-scm.com/docs/git-rev-list.
- Mostra tutti i commit del ramo corrente:
git rev-list {{HEAD}}
- Mostra i commit più recenti di una certa data, su uno specifico ramo:
git rev-list --since={{'2019-12-01 00:00:00'}} {{nome_ramo}}
- Mostra tutti i commit di unione (merge commit) associati a uno specifico commit:
git rev-list --merges {{commit}}