2

i wonder where gitosis stores the working copies of my repositories. I can see the filetree with the gitweb interface but cant find any working copy in /srv/gitosis/repositories/testrepo. Iam also able to push and clone to the repo.

But how can i manage to write my deploy-script without knowing the path of the working copy?

animuson
  • 53,861
  • 28
  • 137
  • 147
Daniel W.
  • 21
  • 1

1 Answers1

4

gitosis stores repositories bare, that is, without a working directory at all. You will have to clone /srv/gitosis/repositories/testrepo somewhere else for deployment.

cdhowie
  • 158,093
  • 24
  • 286
  • 300
  • 1
    so when i edit a file and push it... i have to add the fetch-command for my cloned repo, to the deploy-script. Thnk u =) – Daniel W. Nov 29 '10 at 21:23