1
ratazzi Sep 3, 2021 via iPhone
rsync 啊
|
2
yzwduck Sep 3, 2021 * rsync -r --exclude node_modules source target
* bsdtar -c --exclude node_modules -C source . | bsdtar -x -C target |
3
mangoDB Sep 3, 2021
[rsync 命令]( https://wangdoc.com/ssh/rsync.html)
|
5
610915518 Sep 3, 2021
rsync 永远滴神!
|
6
AllenHua Sep 3, 2021 @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 Sep 4, 2021
git clone src dist
|