iesahin / xvc

A robust (🐢) and fast (🐇) MLOps tool for managing data and pipelines in Rust (🦀)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`xvc file move`

iesahin opened this issue · comments

Move a file in the repository to another location in the repo

ˋˋˋconsole
$ ls
data.txt
$ xvc file move data.txt data2.txt
$ ls
data2.txt
$ mkdir mydata
$ xvc file move 'data*' mydata/ --recheck symlink
$ xvc file move mydata another-data --recheck hardlink
$ xvc file move another-data yet-another --recheck reflink
$ ls -Rl
ˋˋˋ