error: empty commit messageerror: empty commit message
commit message खाली होने के कारण commit रद्द कर दिया गया।
There is no tracking information for the current branchवर्तमान branch किसी remote branch को track करने के लिए सेट नहीं है।
Local branch upstream tracking branch सेट किए बिना बनाई गई थी। Git को पता नहीं कि किस remote branch से pull या push करना है।
Upstream branch सेट करें: git branch --set-upstream-to=origin/branch-name। या upstream के साथ push करें: git push -u origin branch-name। यह प्रति branch केवल एक बार करना होता है।
git branch --set-upstream-to=origin/main mainerror: empty commit messagecommit message खाली होने के कारण commit रद्द कर दिया गया।
error: non-fast-forward updatePush remote ब्रांच का इतिहास rewrite कर देगा इसलिए reject किया गया।
You are in 'detached HEAD' stateHEAD किसी ब्रांच की बजाय एक विशिष्ट commit की ओर इंगित कर रहा है, जिसका अर्थ है कि नए commit orphaned हो जाएंगे।
remote: error: File is too largeएक फ़ाइल remote hosting service द्वारा अनुमत अधिकतम आकार से अधिक है।
error: could not apply commitrebase के दौरान commit apply करते समय conflict उत्पन्न हुआ।
error: Cannot delete branch currently checked outआप वर्तमान में जिस ब्रांच पर हैं उसे डिलीट नहीं कर सकते।