mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
f67702a066
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
609 B
609 B
rcs
Revision Control System - manage RCS file attributes. See also:
ci,co,rcsdiff,rlog. More information: https://manned.org/rcs.
- Unlock a revision locked by another user (requires access):
rcs -u {{path/to/file}}
- Lock a specific revision of a file:
rcs -l{{revision}} {{path/to/file}}
- Set the strict locking mode (require lock for check-in):
rcs -L {{path/to/file}}
- Add or replace a log message for a specific revision:
rcs -m{{revision}}:"{{new_message}}" {{path/to/file}}
- Delete a specific revision from the RCS file:
rcs -o{{revision}} {{path/to/file}}