mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +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>
649 B
649 B
rcsmerge
Merge RCS revisions into the working file. See also:
ci,co,rcs,rcsdiff,rlog. More information: https://manned.org/rcsmerge.
- Merge differences between two revisions into the working file:
rcsmerge -r{{revision1}} -r{{revision2}} {{path/to/file}}
- Merge changes from a branch revision into the working file:
rcsmerge -r{{branch_revision}} {{path/to/file}}
- Perform a quiet merge (suppress diagnostics):
rcsmerge -q -r{{revision1}} -r{{revision2}} {{path/to/file}}
- Print the result to
stdoutinstead of overwriting the working file:
rcsmerge -p -r{{revision1}} -r{{revision2}} {{path/to/file}}