मैं गिट के लिए बहुत नया हूँ; मैंने हाल ही में एक GitHub खाता बनाया है।
मैंने केवल अपनी पहली रिपॉजिटरी (एक नमूना परियोजना) को आगे बढ़ाने की कोशिश की है, लेकिन मुझे निम्नलिखित त्रुटि मिल रही है:
No such remote 'origin'
मैंने निम्नलिखित कमांड चलाई:
git init
git commit -m "first commit"
git remote add origin https://github.com/VijayNew/NewExample.git
git push -u origin master
हालाँकि, जब मैंने git कमिट-मी "फर्स्ट कमिट" चलाया, तो मुझे निम्न संदेश मिला:
nothing added to commit but untracked files present (use "git add" to track)
तो फिर मैंने सेट करने की कोशिश की origin
, उपयोग करना
git remote set-url origin https://github.com/VijayNew/NewExample.git
लेकिन मुझे निम्नलिखित त्रुटि मिली:
No such remote 'origin'
मैंने क्या गलत किया, और मुझे क्या करना चाहिए?
git remote -v
कुछ भी डिस्प्ले नहीं है।
git-remote -v
?