Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been using Git for a while now and have recently downloaded an update only to find this warning message come up when I try to push.

warning: push.default is unset; its implicit value is changing in 
Git 2.0 from 'matching' to 'simple'. To squelch this message 
and maintain the current behavior after the default changes, use: 

  git config --global push.default matching

To squelch this message and adopt the new behavior now, use: 

  git config --global push.default simple

I can obviously set it to one of the values mentioned, but what do they mean? What's the difference between simple and matching?

If I change it on one client will I need to do anything on other clients that I share repos with?

share|improve this question

2 Answers

up vote 267 down vote accepted

It's explained very clearly in the docs (search for push.default on the page), but I'll try to summarize:

  • matching means git push will push all your local branches to the ones with the same name on the remote. This makes it easy to accidentally push a branch you didn't intend to.

  • simple means git push will push only the current branch to the one that git pull would pull from, and also checks that their names match. This is a more intuitive behavior, which is why the default is getting changed to this.

This setting only affects the behavior of your local client, and can be overridden by explicitly specifying which branches you want to push on the command line. Other clients can have different settings, it only affects what happens when you don't specify which branches you want to push.

share|improve this answer
Thanks for the summary and reference, it really helps. M – Marko Oct 31 '12 at 19:02
Glad to know this change. When I was new to git I accidentally pushed all local branches thinking git push will push only current branch. – rahul286 Feb 28 at 14:46

simple is an invalid value: error: Malformed value for push.default: simple error: Must be one of nothing, matching, tracking or current.

Use current to only push current branch. git config --global push.default current

share|improve this answer
3  
If your version of Git is new enough to emit the warning in the question, then simple is a valid value for push.default. – Charles Bailey Apr 3 at 13:24
simple was added as a valid option for push.default in git version 2.0. – WedTM Apr 18 at 14:25
2  
actually, it was added as a valid option in git 1.7.11 , to be added as a default in git 2.0 – michael_n Apr 27 at 2:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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