执行以下步骤:-
- 主机是 Mac OS X 10.6.8
- git archive -o version-$SHA.tar.gz HEAD
- scp 版本-$SHA.tar.gz $Remote_location
- ssh 到远程位置,即在 ubuntu VM 上
- tar -zxf version-$SHA.tar.gz
第 5 步后出现错误:-
gzip: stdin: 不是 gzip 格式
tar: child 返回状态 1
tar:错误不可恢复:现在退出
可能是什么问题?在我的本地 Mac 机器上,同样的命令有效。
引自 the manpage :
--format= Format of the resulting archive: tar or zip. If this option is not given, and the output file is specified, the format is inferred from the filename if possible (e.g. writing to "foo.zip" makes the output to be in the zip format). Otherwise the output format is tar.
所以您得到的可能是一个未压缩的 .tar 文件,只是命名为 .tar.gz。
尝试不使用 -z 参数。
我是一名优秀的程序员,十分优秀!