I have a remote bare repository 'hub', I work only in the 'master' branch. The last sentence of this error message makes me wonder: . How do I find out which is my default configured remote for your current branch? And how do I set it?

[myserver]~/progs $ git remote -v
hub     ~/sitehub/progs.git/ (fetch)
hub     ~/sitehub/progs.git/ (push)
[myserver]~/progs $ git branch -r
  hub/master
[myserver]~/progs $ git remote -v
hub     ~/sitehub/progs.git (fetch)
hub     ~/sitehub/progs.git (push)
[myserver]~/progs $ cat .git/HEAD
ref: refs/heads/master
[myserver]~/progs $ git pull hub
You asked to pull from the remote 'hub', but did not specify
a branch. Because this is not the default configured remote
for your current branch, you must specify a branch on the command line.
link|improve this question

feedback

2 Answers

up vote 16 down vote accepted

Track the remote branch

You can specify the default remote repository for pushing and pulling using git-branch’s track option. You’d normally do this by specifying the --track option when creating your local master branch, but as it already exists we’ll just update the config manually like so:

Edit your .git/config

[branch "master"]
  remote = origin
  merge = refs/heads/master

Now you can simply git push and git pull.

[source]

link|improve this answer
Wouldn't this also be set if the OP did git pull hub master? – Ryan Bigg Jan 31 '11 at 10:46
@Ryan Bigg: Not automatically, or you would always screw up your config. – poke Jan 31 '11 at 11:17
3  
Why edit a config file when git commands exist for this very reason? – urschrei Jan 31 '11 at 11:53
3  
git branch --set-upstream local_branch remote/remote_branch (or when pushing, as detailed below) – urschrei Jan 31 '11 at 21:50
1  
@scragz: No way! the command approach guarantees your .gitconfig is left in a meaningful state. – smci Nov 30 '11 at 21:31
show 2 more comments
feedback

You can do it more simply:
git push -u hub master when pushing, or:
git branch --set-upstream master hub/master

link|improve this answer
For anyone wondering: the second command can be used for existing branches – Eric Hu Aug 22 '11 at 20:54
1  
@eric-hu as detailed in my answer here: stackoverflow.com/questions/4878249/… – urschrei Aug 22 '11 at 21:36
feedback

Your Answer

 
or
required, but never shown

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