나는 잠시 동안 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
?
한 클라이언트에서 변경하면 repos를 공유하는 다른 클라이언트에서 무엇을해야합니까?