Aviso: push.default não está definido; seu valor implícito está mudando no Git 2.0

Eu tenho usado o Git por um tempo agora e recentemente baixei uma atualização apenas para encontrar esta mensagem de aviso quando eu tentopush.

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

Eu posso, obviamente, configurá-lo para um dos valores mencionados, mas o que eles significam? Qual é a diferença entresimple ematching?

Se eu alterá-lo em um cliente, precisarei fazer alguma coisa com outros clientes com quem compartilho repos?

questionAnswers(4)

yourAnswerToTheQuestion