Files
cheatsheet-tldr/tldr/rlog
2025-12-18 00:18:39 +00:00

31 lines
664 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# rlog
> Print the revision log of RCS files.
> See also: `ci`, `co`, `rcs`, `rcsdiff`.
> More information: <https://manned.org/rlog>.
- Display the complete revision history of a file:
`rlog {{path/to/file}}`
- Display only the header information (no revision details):
`rlog -h {{path/to/file}}`
- Display information for a specific revision:
`rlog -r{{revision}} {{path/to/file}}`
- Display revisions within a date range:
`rlog -d"{{start_date}}<{{end_date}}" {{path/to/file}}`
- Display revisions by a specific author:
`rlog -w{{author}} {{path/to/file}}`