मैं अभी कुछ समय के लिए 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
?
यदि मैं इसे एक ग्राहक पर बदलता हूं तो क्या मुझे अन्य ग्राहकों पर कुछ भी करने की आवश्यकता होगी, जिनके साथ मैं रेपो साझा करता हूं?