error: failed to push some refserror: failed to push some refs
Push इसलिए reject हो गया क्योंकि remote पर ऐसे changes हैं जो आपके पास locally नहीं हैं।
fatal: No submodule mapping foundGit submodules संदर्भित हैं लेकिन उन्हें ठीक से आरंभ नहीं किया गया।
repository submodules उपयोग करती है लेकिन cloning के बाद उन्हें initialize नहीं किया गया। .gitmodules file उन submodules को संदर्भित करती है जो स्थानीय रूप से setup नहीं की गई हैं।
Submodules initialize और update करें: git submodule init && git submodule update। नए clone के लिए उपयोग करें: git clone --recurse-submodules url। सभी submodules update करने के लिए: git submodule update --init --recursive।
git submodule init && git submodule updateerror: failed to push some refsPush इसलिए reject हो गया क्योंकि remote पर ऐसे changes हैं जो आपके पास locally नहीं हैं।
fatal: ambiguous argumentGit यह निर्धारित नहीं कर सका कि argument किसी revision, path, या कुछ और को संदर्भित करता है।
nothing to commit, working tree cleancommit करने के लिए कोई changes नहीं हैं; working directory आखिरी commit से मेल खाती है।
fatal: A branch named 'x' already existsनिर्दिष्ट नाम की ब्रांच रिपॉजिटरी में पहले से मौजूद है।
CONFLICT (content): Merge conflictGit दोनों ब्रांच में एक ही लाइनें बदली होने के कारण स्वचालित रूप से merge नहीं कर सका।
remote: error: File is too largeएक फ़ाइल remote hosting service द्वारा अनुमत अधिकतम आकार से अधिक है।