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
git push origin. This sounds very surprising to me, if you really havepush.defaultcorrectly set totracking. Could you also let us know (a) what version of git you're using and (b) that the output of the commandgit config push.defaultis definitelytracking? – Mark Longair Mar 2 '11 at 9:04