vote up 2 vote down star

I have a local repository called TestRepo. I clone it with the --bare option, zip this clone up, and throw it on my server. Unzip it, and it's still bare.

I then clone the bare remote repository locally over ssh with something like

git clone ssh://git@host.com/~/TestRepo.git TestRepoCloned

The local TestRepoCloned is not bare and has a remote called "origin." It appears to be tracking correctly from the looks of its config file

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
    ignorecase = true
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = ssh://git@host.com/~/TestRepo.git
[branch "master"]
    remote = origin
    merge = refs/heads/master

I edit an existing file. I commit the change to the current branch (master) via

git commit -a -m "Edited a file."

The commit succeeds and all is well.

I decide to push this change to the remote repository via SSH with a

git push

The remote repository is now no longer bare, but has a complete working directory, and I get continuous error messages on all further attempts to push to it.

Everything I've read seems to suggest that what I'm doing is correct, but it simply is not working. How am I supposed to push changes to a bare remote repo and actually keep it bare?

flag
By the way, look into SCP-style URLs. "ssh://git@host.com/~/TestRepo.git" becomes "git@host.com:TestRepo.git", which is much cleaner. – zenazn Oct 10 at 21:21
When it magically goes non-bare, where does the working tree go? Usually non-bare repositories are called .git and live in the root directory of the working tree. Your remote repository is called TestRepo.git, though. – Charles Bailey Oct 10 at 21:47
The SCP-style URLs do not seem to work, nor do they make anything much cleaner. – NSD Oct 11 at 20:53

2 Answers

vote up 1 vote down check

It might be possible that zip/unzip does not preserve file permission (e.g. executable bit) and thus activates some previously deactivated hooks. You might want to check hook permissions on server or skip the whole zip part and just create bare repository directly on the server and upload our data using regular git push.

link|flag
You're close. It seems to preserve the executable bits just fine, but the hooks directories I've unzipped only contain .sample files. Everything in all of these files is commented out, so I have no idea what could possibly be running, but I don't see the problem if I do the init --bare on the server and then "remote add origin" locally. In that case I have many more files in the hooks directory, though I have no idea why. Both local machine and server are running the same Git version, but local is OS X and remote is RedHat something or other. – NSD Oct 11 at 3:14
The hooks are private to the machine, they are never cloned, pushed or pulled. The sample hooks are created locally by whatever version of Git you are using. If your client and server have different versions of Git, they will create different sample hooks. – Jörg W Mittag Oct 11 at 7:49
Well I've never touched any hooks directories anywhere, so if Git is creating something that cannot be moved to another machine when I make a bare clone of an existing repository then that sure smells like a bug to me. – NSD Oct 11 at 14:31
vote up 3 vote down

This shouldn't happen. My guess is that there is either some sort of hook script (probably post-receive), which causes a checkout or that there's a bug in Git. Both of these aren't very likely, but that's the only thing I can imagine.

link|flag

Your Answer

Get an OpenID
or

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