1
ratazzi 2021-09-03 19:45:14 +08:00 via iPhone
rsync 啊
|
2
yzwduck 2021-09-03 19:47:32 +08:00 1
* rsync -r --exclude node_modules source target
* bsdtar -c --exclude node_modules -C source . | bsdtar -x -C target |
3
mangoDB 2021-09-03 20:15:16 +08:00
[rsync 命令]( https://wangdoc.com/ssh/rsync.html)
|
5
610915518 2021-09-03 21:22:47 +08:00
rsync 永远滴神!
|
6
AllenHua 2021-09-03 23:39:40 +08:00 1
@yzwduck #2
使用 rsync --exclude -a 建议使用 -a 参数而不是 -r 因为 -a 参数是比-r 参数更合理、更建议使用的参数,能够递归复制、复制原始文件的元信息(比如拥有者、创建时间、最近一次修改时间等),-r 只能递归复制 see also: https://hellodk.cn/post/591 https://www.ruanyifeng.com/blog/2020/08/rsync.html |
7
phony2r 2021-09-04 17:18:27 +08:00
git clone src dist
|