Can you explain what is wrong with this workflow?

$ git init --bare bare
Initialized empty Git repository in /work/fun/git_experiments/bare/
$ git clone bare alice
Cloning into alice...
done.
warning: You appear to have cloned an empty repository.
$ cd alice/
$ touch a
$ git add a
$ git commit -m "Added a"
[master (root-commit) 70d52d4] Added a
 0 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 a
$ git push
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to '/work/fun/git_experiments/bare'

Doesn't git push always push to the repository I cloned from?

link|improve this question

71% accept rate
Shouldn't you specify branch to push? – Rekin May 27 '11 at 21:14
not after a clone!!! after the problem is fixed, it works great and no need to specify the branch...just on this first checkout of an empty repository does this occur which is VERY VERY annoying...they should fix this issue. – Dean Hiller May 23 at 16:49
feedback

4 Answers

up vote 6 down vote accepted

Yes, the problem is that there are no commits in "bare". This is a problem with the first commit only, if you create the repos in the order (bare,alice). Try doing git push origin master or a force push or something like that. This would only be required the first time. Afterwards it should work normally.

Also, you should update your version of git. Recent version don't have this problem.

link|improve this answer
I'm doing sudo apt-get upgrade git-core and sudo apt-get upgrade git and it think no update is necessary. git --version returns 1.7.3.1. Any idea what's missing? I admit currently apt-get update doesn't work for me, but it did not too long ago. – ripper234 May 27 '11 at 21:35
1  
@ripper234: The current version of git is 1.7.5.3 You can either live with the inconvenience, use a different workflow, or install the latest git manually w/o debian/ubuntu packaging. – Seth Robertson May 27 '11 at 21:37
Ah right, I forget that software take some time before it gets packaged. I'm a linux noob, coming from Windows, and used to click-here-to-install-the-newest-version. – ripper234 May 27 '11 at 21:47
1  
Regarding “Recent version don't have this problem”: Even in recent versions, the default for pushes does not seem to have changed from matching; maybe you have push.default set to upstream/tracking (or current) in your ~/.gitconfig? – Chris Johnsen May 28 '11 at 6:11
@Chris Johnsen: Good catch. I always forget that the default isn't tracking since I have had that set ever since I started using git several years ago and it seems so sane. – Seth Robertson May 28 '11 at 20:56
feedback

If you:

 git push origin master

it will push to the bare repo.

It sounds like your alice repo isn't tracking correctly.

cat .git/config

Will should the default remote and branch.

If you

 git push -u origin master

You should start tracking that remote and branch. I'm not sure if that option has always been in git.

link|improve this answer
feedback

Try this in your alice repository (before pushing):

git config push.default tracking

Or, configure it as the default for your user with git config --global ….


git push does default to the origin repository (which is normally the repository from which you cloned the current repository), but it does not default to pushing the current branch—it defaults to pushing only branches that exist in both the source repository and the destination repository.

The push.default configuration variable (see git-config(1)) controls what git push will push when it is not given any “refspec” arguments (i.e. something after a repository name). The default value gives the behavior described above.

Here are possible values for push.default:

  • nothing
    This forces you to supply a “refspec”.

  • matching (the default)
    This pushes all branches that exist in both the source repository and the destination repository.
    This is completely independent of the branch that is currently checked out.

  • upstream or tracking
    (Both values mean the same thing. The later was deprecated to avoid confusion with “remote-tracking” branches. The former was introduced in 1.7.4.2, so you will have to use the latter if you are using Git 1.7.3.1.)
    These push the current branch to the branch specified by its “upstream” configuration.

  • current
    This pushes the current branch to the branch of the same name at the destination repository.

    These last two end up being the same for common cases (e.g. working on local master which uses origin/master as its upstream), but they are different when the local branch has a different name from its “upstream” branch:

    git checkout master
    # hack, commit, hack, commit
    
    # bug report comes in, we want a fix on master without the above commits
    
    git checkout -b quickfix origin/master  # "upstream" is master on origin
    # fix, commit
    git push
    

    With push.default equal to upstream (or tracking), the push would go to origin’s master branch. When it is equal to current, the push would go to origin’s quickfix branch.

The matching setting will update bare’s master in your scenario once it has been established. To establish it, you could use git push origin master once.

However, the upstream setting (or maybe current) seems like it might be a better match for what you expect to happen, so you might want to try it:

# try it once (in Git 1.7.2 and later)
git -c push.default=upstream push

# configure it for only this repository
git config push.default upstream

# configure it for all repositories that do not override it themselves
git config --global push.default upstream

(Again, if you are still using a Git before 1.7.4.2, you will need to use tracking instead of upstream).

link|improve this answer
feedback
git push --all

is the canonical way to push everything to a new bare repository.

Another way to do the same thing is to create your new, non-bare repository and then make a bare clone with

git clone --bare

then use

git remote add origin <new-remote-repo>

in the original (non-bare) repository.

link|improve this answer
But it still doesn't work in my case. – ripper234 May 28 '11 at 5:21
...so you downvoted the answer? It is the standard way to push everything to a new, bare repository. If it didn't work for you, there is some other issue. – ebneter May 28 '11 at 7:59
You're right, I probably shouldn't have, I know you were just trying to help. If you edit it I'll undo my downvote. – ripper234 May 28 '11 at 11:14
Thanks, edited it with another way to accomplish the same task. – ebneter May 29 '11 at 4:03
feedback

Your Answer

 
or
required, but never shown

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