标签: svn export tar
如何将svn项目直接导出到.tgz文件?我不想创建一个包含所有子目录和代码的目录,只想将其作为.tgz文件。
与
git archive --remote {git_location} --format tgz {git_ref} > {archive_file}'
答案 0 :(得分:0)
'svn export {svn_url} {some_path} ; tar -czvf {archive_filename} {some_path}