最佳答案
我已经使用Git一段时间了,最近下载了一个更新,但当我尝试push
时发现此警告消息出现。
warning: push.default is unset; its implicit value is changing inGit 2.0 from 'matching' to 'simple'. To squelch this messageand 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
我显然可以将其设置为提到的值之一,但它们是什么意思?simple
和matching
有什么区别?
如果我在一个客户端上更改它,我是否需要在与我共享repos的其他客户端上执行任何操作?