我已经使用Git已有一段时间了,最近下载了一个更新,只是当我尝试时发现此警告消息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
我显然可以将其设置为提到的值之一,但是它们是什么意思呢?simple
和之间有什么区别matching
?
如果我在一个客户上更改它,是否需要在与我共享仓库的其他客户上做任何事情?