使用tar命令打包后,文件内会出现每个文件的副本文件._*
1. 产生原因
https://superuser.com/questions/61185/why-do-i-get-files-like-foo-in-my-tarball-on-os-x/61188#61188
2. 解决方式:
需要添加COPYFILE_DISABLE=1避免生成._*文件
如:COPYFILE_DISABLE=1 tar -zcvf repository.tar.gz repository
https://superuser.com/questions/61185/why-do-i-get-files-like-foo-in-my-tarball-on-os-x/61188#61188
需要添加COPYFILE_DISABLE=1避免生成._*文件
如:COPYFILE_DISABLE=1 tar -zcvf repository.tar.gz repository