Git-archive remote end hung up
Asked Answered
D

1

6

I was trying to checkout single file from Github. After following this thread I tried

git archive --format=tar --remote=ssh://[email protected]:user/project.git HEAD:README.md

I get the following error

fatal: The remote end hung up unexpectedly

Edit: I tried getting file from raw by getting head from git ls-remote url. Then using this head I got the file using wget. But I would like to know how to do it using git commands.

Delphina answered 5/6, 2015 at 6:28 Comment(0)
T
7

Answer from github docs on Can I archive a repository?

GitHub does not provide archiving.

If you want to consider a workaround, you can emulate archives locally by fully cloning the repository to a local machine. This will make you responsible for your own backups.

Teacup answered 5/6, 2015 at 9:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.