我试图从Github检出单个文件。在关注 this线程后,我尝试了
git archive --format=tar --remote=ssh://git@github.com:user/project.git HEAD:README.md
我收到以下错误
fatal: The remote end hung up unexpectedly
编辑:
我尝试从git ls-remote url
获取头文件,从raw获取文件。然后使用这个头我使用wget获取文件。但我想知道如何使用git命令。
答案 0 :(得分:3)
回答:https://help.github.com/articles/can-i-archive-a-repository/
引用:
'' GitHub不提供存档。
如果要考虑解决方法,可以通过将存储库完全克隆到本地计算机来本地模拟存档。这将使您负责自己的备份。 ''