up vote 152 down vote favorite
89
share [g+] share [fb]

Yesterday, I posted a question on how to clone a git repository from 1 of my machine to another. How can I 'git clone' from another machine

I am now able to successfully clone a git repository from my src (192.168.1.2) to my dest (192.168.1.1).

But when I did an edit to a file and then do a git commit -a -m "test" and then do a git push.

I get this error on my dest (192.168.1.1):

git push                                                
hap@192.168.1.2's password: 
Counting objects: 21, done.
Compressing objects: 100% (11/11), done.
Writing objects: 100% (11/11), 1010 bytes, done.
Total 11 (delta 9), reused 0 (delta 0)
error: refusing to update checked out branch: refs/heads/master
error: By default, updating the current branch in a non-bare repository
error: is denied, because it will make the index and work tree inconsistent
error: with what you pushed, and will require 'git reset --hard' to match
error: the work tree to HEAD.
error: 
error: You can set 'receive.denyCurrentBranch' configuration variable to
error: 'ignore' or 'warn' in the remote repository to allow pushing into
error: its current branch; however, this is not recommended unless you
error: arranged to update its work tree to match what you pushed in some
error: other way.
error: 
error: To squelch this message and still keep the default behaviour, set
error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To git+ssh://hap@192.168.1.2/media/LINUXDATA/working
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'git+ssh://hap@192.168.1.2/media/LINUXDATA/working'

I'm using two different versions of git (1.7 on the remote and 1.5 on the local machine), is that a possible reason?

link|improve this question

41% accept rate
4  
hey hap. i've seen you posting a couple of questions about git in your local networking environment. probably worth a read: the server chapter in the pro git book. progit.org/book/ch4-0.html – stigi May 12 '10 at 6:44
This is a great question, but after reading this question, I still don't grab the problem conceptually. But here is a link to a great article discussing bare and non-bare repositories: sitaramc.github.com/concepts/… – zsljulius Sep 4 '11 at 4:25
3  
@hap You really should accept an answer – SSteve Sep 8 '11 at 20:03
feedback

9 Answers

You can simply convert your remote repository to bare repository ( There is no working copy in the bare repository - the folder contains only the actual repository data ) .

Execute following command in your remote repository folder:

git config --bool core.bare true

Then delete all the files except .git in that folder. and then you will be able to perform git push to the remote repository without any errors.

link|improve this answer
Informative and it worked great stuff! +1 – xenon Jul 25 '10 at 0:38
1  
Thanks. I also needed this. I was following the submodules tutorial from the Git Community Book and hit this roadblock. – Shiki Sep 14 '10 at 15:20
6  
This answer should definitely be accepted. Here is my +1. – ereOn Jan 25 '11 at 14:19
Thank you very much - made my ... evening :) – Makibo Feb 25 '11 at 17:43
woohoo, this fixed my problems as well – Kris Apr 16 '11 at 12:28
show 4 more comments
feedback

Just had the same error while I began learning git. The above answers are clearly not for newbies!!! (Going to use non technical terms to get the idea across) Anyways what is happening is that you have 2 repositories, one is the original you first made, and the other the work one you just made. Right now you are in your work repository, and using the "master" branch. But you also happen to be "logged in" in your original repository to the same "master" branch. Now since you're "logged in" in the original Git fears you might mess up because you might be working on the original and screw things up. So what you need to do is return to the original repository and do a "git checkout someotherbranch", now you can push with no problems.

hope this helps

link|improve this answer
17  
+1 Much more helpful, thank you Robert. I didn't make sense to convert to a bare repo in my case. Simply have to 'deactivate' the branch you're attempting to push to. Makes sense. – Eric Muyser Feb 1 '11 at 2:21
Ok, but as both repository are on the same machine, what should I do ? I mean: how can I "log out" of the original git ? how can I "uncheckout" the origin repository ? I don't have any other branch yet, so I can git checkout anotherbranch. – FMaz008 Mar 25 '11 at 19:38
5  
@FMaz008: just create a dummy branch (git checkout -b dummy) – Dror Cohen Apr 3 '11 at 11:17
3  
Man this is far better than most voted answer :) Thanks. Although the other answer makes good point also :) – Ivan Ivanić Nov 12 '11 at 10:13
2  
git checkout is completely different than svn checkout. git checkout is simply a "switch current" selector. Thanks for the informative answer Robert!. – JohnZ Nov 16 '11 at 12:49
feedback

The error message describes what has happened. More modern versions of git refuse to update a branch via a push if that branch is checked out.

The easiest way to work between two non-bare repositories is either to always update the repositories by pull (or fetch and merge) or, if you have to, by pushing to a separate branch (an import branch) and then merging that branch into the master branch on the remote machine.

The reason for this restriction is that the push operation operates only on the remote git repository it doesn't have access to the index and working tree so, if allowed, a push on the checked out branch would change the HEAD to be inconsistent with the index and working tree on the remote repository.

This would make it very easy to accidentally commit a change that undoes all of the pushed changes and also makes it very difficult to distinguish between any local changes that have not been committed and differences between the new HEAD, the index and the working tree that have been caused by push moving HEAD.

link|improve this answer
Thanks. So how can I fix my problem? In my 192 box, i did '$ cd (project-directory) $ git init $ (add some files) $ git add .' and then in my 191 box, I did a 'git clone ' and edit some files and than try to 'git push'. – hap497 May 12 '10 at 7:24
3  
Well, I described the possibilities in my answer. Either you can go to the 192 box and fetch from the 191 box (you might want to add the 191 box as a named remote - look at git remote add box191 <191url> ), or you can push from the 191 box to an alternatively named branch (e.g. git push origin master:refs/heads/upload ), then to the 192 box and merge (e.g. git merge upload ). – Charles Bailey May 12 '10 at 7:31
just adding a thanks for the good explanation – jcinacio Sep 8 '10 at 14:32
feedback

You can get around this "limitation" by editing the .git/config on the destination server. Add the following to allow a git repository to be pushed to even if it is "checked out":

[receive] denyCurrentBranch = warn

or

[receive] denyCurrentBranch = false

The first will allow the push while warning of the possibility to mess up the branch, whereas the second will just quietly allow it.

This can be used to "deploy" code to a server which is not meant for editing. This is not the best approach, but a quick one for deploying code.

link|improve this answer
Using this to "deploy" code to a server won't work. Even if you disable the warning so you can push to the checked out branch, the working copy is NEVER updated on a push. – Arrowmaster Feb 8 '11 at 17:46
1  
I'm using the above method with cd .. && git reset --hard post-receive hook to deploy. Hackish, but works. – jholster Mar 23 '11 at 8:30
feedback

You should only be pushing to a bare repository. A bare repository is a repository that has no checked out branches. If you were to cd to a bare repository directory, you'd only see the contents of a .git directory.

link|improve this answer
4  
There's nothing wrong with pushing to a non-checked out branch in a non-bare repository. This is a perfectly valid way of working. – Charles Bailey May 12 '10 at 6:12
Fair enough, that would work. But that is not what the user is doing. – RibaldEddie May 12 '10 at 6:14
5  
It's not the fact that he isn't using a bare repository that is 'wrong'; it is the fact that he is pushing to a checked out branch. There is no evidence that he has or wants a separate bare repository so your blanket statement that he should only be pushing to a non-bare repository is not giving the asker all the options; one of which might more easily solve his immediate problem. – Charles Bailey May 12 '10 at 6:26
feedback

You can re-create your server repo and push from your local branch master to the server master.

On your remote server:

mkdir myrepo.git
cd myrepo.git
git init --bare

Ok, from your local branch

git push origin master:master

link|improve this answer
feedback

.git repositories should be bare after git init and only become nonbare after git add whatoever or git checkout

fix the git!

link|improve this answer
feedback

I had the same issue. For me, I use git push to move code to my servers. I never change the code on the server side, so this is safe.

In the repo you are pushing to type:
git config receive.denyCurrentBranch ignore

This will allow you to change the repo while it's a working copy.

After you run a git push, goto the remote machine and type this:
git checkout -f

This will make the changes you pushed be reflected in the working copy of the remote machine.

Please note, this isn't always safe if you make changes on in the working copy that you're pushing to.

link|improve this answer
1  
You may find this useful. toroid.org/ams/git-website-howto – Arrowmaster Feb 8 '11 at 17:48
feedback

In fact, set the remote to a non-checked out branch is sufficient. After you checked out your remote in a different branch, you can push.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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