vote up 1 vote down star

I am trying to add a post-commit hook to a bare repository, such that whenever a commit is made the changed files are automatically installed in a (hardcoded) directory.

Is there a way to fetch a single file from the repository?

git-clone does not appear to allow for specifying a path, and any other commands that I found (git-fetch, git-pull) seem to require an existing local git repository to work.

Is there a way to do this?

flag

1 Answer

vote up 1 vote down check

You may find the answers in: How to do a "git export"

In particular, git checkout-index will probably do the job for you:

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

Don't forget the trailing slash or this command won't do exactly what you want.

link|flag
git checkout-index does not work with a bare repository ("fatal: This operation must be run in a work tree"). However, the link that you posted also suggests git-archive, which works fine: ("git archive master TESTFILE | tar -x -C /my/destination") Thanks! – knipknap Sep 1 at 8:14
Ah, interesting, I guess a bare repository doesn't have an index to read from. Good to know. – Greg Hewgill Sep 1 at 8:27

Your Answer

Get an OpenID
or

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