There is no tracking information for the current branchवर्तमान branch के लिए कोई tracking जानकारी नहीं है
वर्तमान branch किसी remote branch को track करने के लिए सेट नहीं है।
error: could not apply commitrebase के दौरान commit apply करते समय conflict उत्पन्न हुआ।
git rebase के दौरान, एक commit को cleanly apply नहीं किया जा सका क्योंकि यह target ब्रांच के changes से conflict करता है। प्रत्येक conflicting commit को अलग-अलग resolve करना होगा।
प्रभावित फ़ाइलों में conflicts resolve करें। resolved फ़ाइलें stage करें: git add file। rebase जारी रखें: git rebase --continue। रद्द करने के लिए: git rebase --abort। प्रत्येक conflicting commit के लिए दोहराएँ।
# Fix conflicts then: git rebase --continueThere is no tracking information for the current branchवर्तमान branch किसी remote branch को track करने के लिए सेट नहीं है।
fatal: refusing to merge unrelated historiesGit उन दो ब्रांच को merge करने से मना करता है जो कोई सामान्य ancestor साझा नहीं करतीं।
error: failed to push some refsPush इसलिए reject हो गया क्योंकि remote पर ऐसे changes हैं जो आपके पास locally नहीं हैं।
error: object file is emptyएक Git object file दूषित है और उसमें कोई डेटा नहीं है।
error: pathspec did not match any filesनिर्दिष्ट फ़ाइल pattern किसी भी tracked file से मेल नहीं खाया।
warning: Large files detectedGit ने बड़ी फ़ाइलें पाई जो repository को अनावश्यक रूप से बड़ा कर सकती हैं।