Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to export from github remote repository, not cloning it. Similar to svn export, I do not want to get .git folder with it. I can work around it by cloning and removing .git folder. I wonder if there is a cleaner way?

I read it somewhere you can use git archive to achieve this.

However I got the following errors..

$ git archive --format=tar --remote=git@github.com:xxx/yyy.git master | tar -xf -

Invalid command: 'git-upload-archive 'xxx/yyy.git''
You appear to be using ssh to clone a git:// URL.
Make sure your core.gitProxy config option and the
GIT_PROXY_COMMAND environment variable are NOT set.
fatal: The remote end hung up unexpectedly

Any help would be great. Thanks.

share|improve this question

5 Answers

If your goal is to limit the quantity of information exchanged with the server, have you considered using clone with --depth? You would still need to remove the (much reduced) .git subdirectory though:

git clone --depth=1 git@github.com:xxx/yyy.git && rm -rf yyy/.git
share|improve this answer
Good idea. It will be nicer if I could just 'export' it :) – Adrian Gunawan Mar 7 '12 at 22:33
If you're in zsh you can do this: gist.github.com/johnhamelink/5434938 – John Hamelink Apr 22 at 13:41

If you're only interested in exporting from GitHub then they provide a mechanism to download tarballs. For example:

https://github.com/torvalds/linux/downloads

Even though it says "there aren't any downloads for this repository." you can still use the buttons to download a tarball of the master branch.

Or see this link for a list of tarballs linked to tags:

https://github.com/torvalds/linux/tags

This should work for any GitHub repo, not just the linux kernel.

share|improve this answer
It would be useful if it worked for any git repository, not only github. – techtonik May 21 '12 at 15:09

If you need this for named commits (that is branches and tags), then you can use git clone --depth=1 combined with git archive

It is worth knowing that git clone --depth=1 clones all top commits on all branches and tags (not only master). So after doing such a shallow clone you can enter the local directory and make a git archive --format=tar tag_to_be_exported.

So if you want to export the tag release1.1

git clone --depth=1 git@github.com:xxx/yyy.git
cd yyy
git archive --format=tar release1.1 -o release1.1.tar

So unnless you need to export unnamed commit-ids, this may be a good solution.

share|improve this answer

I think it is not possible to export github repository with git archive. Please read this

https://help.github.com/articles/can-i-archive-a-repository

Only possible ways are

git clone  
github download (ZIP) button   
share|improve this answer

For a normal export:

$ git archive master | tar -x -C /path/to/destination

For a zip archive:

$ git archive --format zip --output /path/to/destination/file.zip master

Of course for this to work, you'll need to clone it locally first, there's no clean way around that.

share|improve this answer
What is the master? Local repository? I want to export directly from remote repository on github – Adrian Gunawan Mar 7 '12 at 22:31
@AdrianGunawan You won't be able to export it directly from GitHub, you need to first clone it locally. After you clone it locally, master refers to the branch name. – Marvin Pinto Mar 7 '12 at 22:34
1  
Downvoted for disregarding the crux of the question as stated and titled. – danorton Aug 22 '12 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.