I'm configuring calimoucho (a little play continuos integration server), and for it to work I need to run a command to pull a cloned git hub repository from outside it.

to be more precise, I'll explain it with an example.

I have the following repository

cd /home/sas
mkdir apps
cd apps
mkdir myApp
cd myApp
git init
echo "my file" > file
git add .
git commit -m "initial commit"

Just a silly test repository where my app is supossed to be

Now I need to clone that repository to a checkout folder.

cd /home/sas
mkdir calimoucho
cd calimoucho
mkdir checkout
cd checkout
git clone /home/sas/apps/myApp/ 

so I have the following directory structure

~/apps
    myapp
      .git
      file
~/calimoucho
    checkout
      myapp
        .git
        file

The continuos integration server will have to pull new changes from ~/apps/myapp to ~/calimoucho/checkout/myapp, running a command line sentence from ~/calimoucho

I try with the following command

~/calimoucho$ git --git-dir=/home/sas/apps/myApp/.git --work-tree=/home/sas/calimoucho/checkout/myApp/ pull

and I get the following error

fatal: /usr/lib/git-core/git-pull cannot be used without a working tree.

if I don't specify the --work-tree option, the pull is issued, but changes are applied to ~/calimoucho folder instead of ~/calimoucho/checkout/myApp

any idea how to update the cloned repo from the ~/calimoucho folder?

thanks a lot

link|improve this question

61% accept rate
already checked this question stackoverflow.com/questions/7188314/… – opensas Oct 1 '11 at 20:04
feedback

1 Answer

You should not set the work-tree to a different repository than the git-dir variable. I think they are meant to be used when you don't want the .git folder to be in the same directory as your working tree. Instead try this:

~/calimoucho/$ git pull --work-tree=checkout/myApp/  ../../apps/myapp
link|improve this answer
I tried it, it gives: sas@test:~/calimoucho$ git pull ../apps fatal: Not a git repository (or any of the parent directories): .git (tried also with ../apps/myApp, ../apps/myApp/.git) – opensas Oct 1 '11 at 20:22
ah! that's the problem, standing at the cloned repo folder everything works fine (in fact, a simple 'git pull' works ok)... the problem is how to do it from another folder... – opensas Oct 2 '11 at 13:38
feedback

Your Answer

 
or
required, but never shown

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