error: non-fast-forward updateerror: non-fast-forward update
Push remote ब्रांच का इतिहास rewrite कर देगा इसलिए reject किया गया।
warning: CRLF will be replaced by LFGit Windows-शैली (CRLF) line endings को Unix-शैली (LF) में परिवर्तित कर रहा है।
आप Windows पर हैं और फ़ाइलें CRLF line endings उपयोग करती हैं, लेकिन repository LF के लिए कॉन्फ़िगर है। Git core.autocrlf और .gitattributes सेटिंग के अनुसार line endings स्वचालित रूप से परिवर्तित करता है।
यह एक warning है, error नहीं। कॉन्फ़िगर करें: git config core.autocrlf true (Windows) या input (Mac/Linux)। .gitattributes फ़ाइल में जोड़ें: * text=auto। इससे सभी प्लेटफ़ॉर्म पर line endings एकसमान रहती हैं।
git config core.autocrlf trueerror: non-fast-forward updatePush remote ब्रांच का इतिहास rewrite कर देगा इसलिए reject किया गया।
fatal: Authentication failedremote server के साथ Git authentication विफल हो गई।
You are in 'detached HEAD' stateHEAD किसी ब्रांच की बजाय एक विशिष्ट commit की ओर इंगित कर रहा है, जिसका अर्थ है कि नए commit orphaned हो जाएंगे।
Permission denied (publickey)SSH authentication विफल हुई क्योंकि server ने आपकी public key स्वीकार नहीं की।
fatal: No submodule mapping foundGit submodules संदर्भित हैं लेकिन उन्हें ठीक से आरंभ नहीं किया गया।
There is no tracking information for the current branchवर्तमान branch किसी remote branch को track करने के लिए सेट नहीं है।