reflink
Reflink, short for reference link, is a feature used by some copy-on-write file systems to create a new file that shares the same data blocks as an existing file. The two files appear as separate entities, but initially they reference the same on-disk blocks. A write to either file triggers a copy-on-write operation, resulting in distinct data blocks for the modified file while the other retains its original content.
This capability is commonly available on copy-on-write file systems such as Btrfs and similar technologies. In
Scope and limitations: Reflink copies are only possible within the same filesystem that implements the feature.
See also: Copy-on-write, cloning, lightweight copies, Btrfs.