pub unsafe extern "C" fn svn_fs_revision_link(
from_root: *mut svn_fs_root_t,
to_root: *mut svn_fs_root_t,
path: *const c_char,
pool: *mut apr_pool_t,
) -> *mut svn_error_t
Expand description
Like svn_fs_copy(), but doesn’t record copy history, and preserves the PATH. You cannot use svn_fs_copied_from() later to find out where this copy came from.
Use svn_fs_revision_link() in situations where you don’t care about the copy history, and where @a to_path and @a from_path are the same, because it is cheaper than svn_fs_copy().