I've set up a git repo via ssh on an Ubuntu box I'm using as a media center/backup server.

the steps I took were:

cd repos
git init <repoName>
cd <repoName>
git config --bool core.bare true

I've been able to successfully push and pull from my desktop and laptop via TortoiseGit, however a git pull via SSH returns:

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

I'm very new to terminal/ssh so any help would be greatly appreciated!

link|improve this question

By the way, you can do git init --bare myrepo to save a step there. – Andrew Marshall Dec 19 '11 at 18:43
feedback

2 Answers

up vote 3 down vote accepted

You have to push to a bare repo. Pull will not work as it requires a working directory to merge to, which is what the error message that you see says.

So setup a remote to the bare repo from the repo that you will be working on and push from that.

PS: The ideal way to create a bare repo is to do git init --bare <reponame>

link|improve this answer
thank you for the answers. I think I need to look into the differences between a regular repo and a bare repo to see why I'm using bare in the first place... – Bms85smb Dec 19 '11 at 18:58
now i remember why: ! [remote rejected] master -> master (branch is currently checked out) error: failed to push some refs to 'ssh:// – Bms85smb Dec 19 '11 at 19:03
@Bms85smb - Yeah, it is standard practice to have the repo that you push to a bare one. – manojlds Dec 19 '11 at 19:05
Forgive me but now i'm confused... Shouldn't I have to push & pull? i.e I create a repo via ssh < clone it on my laptop & pc < make changes (laptop) < commit master (laptop) < push (laptop) < Pull pc & SSH (Ubuntu) – Bms85smb Dec 19 '11 at 19:12
@Bms85smb - You have a bare repo as central repo and only push TO that or pull FROM that. But you NEVER PULL IN that. – manojlds Dec 19 '11 at 19:27
show 3 more comments
feedback

A bare repository doesn't have a working tree. git pull is functionally the same as a git fetch followed by a git merge, and to do a merge you have to have a working tree (in case there are conflicts you need to sort out).

link|improve this answer
thanks< i don't think I want to use a bare repo then. I only used it because I read it as a solution to a push problem I was receiving (see my comment to manojlds). – Bms85smb Dec 19 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

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