vote up 24 vote down star
21

I've been wondering whether there is a good "git export" solution that creates a copy of a tree without the .git repository directory. There are at least three methods I know of:

  1. git clone followed by removing the .git repository directory.
  2. git checkout-index alludes to this functionality but starts with "Just read the desired tree into the index..." which I'm not entirely sure how to do.
  3. git-export is a third party script that essentially does a git clone into a temporary location followed by rsync --exclude='.git' into the final destination.

None of these solutions really strike me as being satisfactory. The closest one to svn export might be option 1, because both those require the target directory to be empty first. But option 2 seems even better, assuming I can figure out what it means to read a tree into the index.

flag

10 Answers

vote up 8 vote down check

I've written a simple wrapper around git-checkout-index that you can use like this:

git export ~/the/destination/dir

If the destination directory already exists, you'll need to add -f or --force.

Installation is simple; just drop the script somewhere in your PATH, and make sure it's executable.

The github repository for git-export

link|flag
vote up 0 vote down

I needed this for a deploy script and I couldn't use any of the above mentioned approaches. Instead I figured out a different solution:

#!/bin/sh
[ $# -eq 2 ] || echo "USAGE $0 REPOSITORY DESTINATION" && exit 1
REPOSITORY=$1
DESTINATION=$2
TMPNAME="/tmp/$(basename $REPOSITORY).$$"
git clone $REPOSITORY $TMPNAME
rm -rf $TMPNAME/.git
mkdir -p $DESTINATION
cp -r $TMPNAME/* $DESTINATION
rm -rf $TMPNAME
link|flag
What was the issue with either a read-tree/checkout-index or archive solution? As far as I can tell you've done the equivalent of something like mkdir -p "$2" && git --git-dir="$1" archive HEAD | tar -x -C "$2" but somewhat longer winded. – Charles Bailey Jul 17 at 10:16
I couldn't get read-tree to work from a remote repository, and the archive solution doesn't work with github. – troelskn Jul 17 at 14:34
vote up 2 vote down

It appears that this is less of an issue with Git than SVN. Git only puts a .git folder in the repository root, whereas SVN puts a .svn folder in every subdirectory. So "svn export" avoids recursive command-line magic, whereas with Git recursion is not necessary.

link|flag
vote up 12 vote down

git-archive also works with remote repository.

git-archive --format=tar --remote=ssh://remote_server/remote_repository master | tar -xf -
link|flag
This one is the option I like best. It has the additional benefit that it also works on bare repositories. – Manni Aug 31 at 14:34
vote up 36 vote down

Probably the simplest way to achieve this is with git archive. If you really need just the expanded tree you can do something like this.

git archive master | tar -x -C /somewhere/else

Most of the time that I need to 'export' something from git, I want a compressed archive in any case so I do something like this.

git archive master | bzip2 >source-tree.tar.bz2

git help archive for more details, it's quite flexible.

link|flag
vote up 0 vote down

My preference would actually be to have a dist target in your Makefile (or other build system) that exports a distributable archive of your code (.tar.bz2, .zip, .jar, or whatever is appropriate). If you happen to be using GNU autotools or Perl's MakeMaker systems, I think this exists for you automatically. If not, I highly recommend adding it.

link|flag
The project I had in mind isn't a code project; it happens to be more along the lines of a web site project. – Greg Hewgill Oct 2 '08 at 17:53
vote up 0 vote down

Just for posterity - as I'm also going through a process of being an SVN user attempting to get up to speed on git, this is a pretty good quick reference on SVN-Git command analogues.

link|flag
vote up 23 vote down

I found out what option 2 means. From a repository, you can do:

git checkout-index -a -f --prefix=/destination/path/

Since in a normal situation the index contains the contents of the repository, there is nothing special to do to "read the desired tree into the index". It's already there.

The -a flag is required to check out all files in the index (I'm not sure what it means to omit this flag in this situation, since it doesn't do what I want). The -f flag forces overwriting any existing files in the output, which this command doesn't normally do.

This appears to be the sort of "git export" I was looking for.

link|flag
...and DON'T FORGET THE SLASH AT THE END, or you won't have the desired effect ;) – conny Apr 8 at 20:48
Isn't the index just a name for the "staging" area? How's it that the tree is already there? I thought you can only add stuff manually to it with git add – hasen j Aug 31 at 6:12
The git add command changes content in the index, so whatever git status shows as "to be committed" is the differences between HEAD and the contents of the index. – Greg Hewgill Aug 31 at 6:30
vote up 6 vote down

From the Git Manual:

Using git-checkout-index to "export an entire tree"

The prefix ability basically makes it trivial to use git-checkout-index as an "export as tree" function. Just read the desired tree into the index, and do:

$ git checkout-index --prefix=git-export-dir/ -a

link|flag
I think the confusion is the phrase "read the desired tree into the index". – davetron5000 Oct 2 '08 at 2:30
vote up 4 vote down

Uh, this is a bit of a non-problem isn't it? You listed three trivial solutions to it...

Pick one, stick it in a shell-script, name it git-export and be done with it.

link|flag
with large repositories, using git clone is considerably more resource-intensive than git checkout-index. Wrapping a bad solution in a shell script doesn't make it much better. – p00ya Jul 28 at 6:31

Your Answer

Get an OpenID
or

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