Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git-archive remote end hung up

Tags:

git

github

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.

like image 586
iLoveCamelCase Avatar asked Jun 05 '15 06:06

iLoveCamelCase


1 Answers

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.

like image 178
fluency03 Avatar answered Oct 24 '22 01:10

fluency03