So I have two tracked branches in my repo, 'testing' and 'master'. These are tracking to the same named branches on my remote server. I have the .gitconfig option for push.default set to 'tracking'. However when I do "git push origin" it merges my new changes with the Master branch ont he remote server. Here is the output of 'git remote show origin':

* remote origin
Fetch URL: git+ssh://******************
Push  URL: git+ssh://******************
HEAD branch: master
Remote branches:
  master  tracked
  testing tracked
Local refs configured for 'git push':
  master  pushes to master  (up to date)
  testing pushes to testing (fast-forwardable)`

Basically, I want to be able to just type 'git push' and 'git pull' and it will automatically push and pull to origin with the appropriate branch.

EDIT:

[*****]$ git config push.default
tracking
[*****]$ git --version
git version 1.7.3.4
link|improve this question
Push can not merge. Its impossible, so edit your question to clarify what you mean. – Arrowmaster Mar 2 '11 at 5:40
If I understand correctly, you're saying that both branches are pushed to the matching branches on the remote when you do git push origin. This sounds very surprising to me, if you really have push.default correctly set to tracking. Could you also let us know (a) what version of git you're using and (b) that the output of the command git config push.default is definitely tracking? – Mark Longair Mar 2 '11 at 9:04
feedback

1 Answer

git config remote.origin.push HEAD

See the documentation for git push (this was in towards the bottom in the examples section).

link|improve this answer
Then what does setting push.default to tracking do? – Chris Mar 2 '11 at 17:43
feedback

Your Answer

 
or
required, but never shown

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