यह GitHub पर रेपो का मेरा पहला सेटअप है। मैं लिनक्स चला रहा हूं, और मेरे GitHub खाते में मेरे कंप्यूटर के लिए ssh-keys सेटअप है।
जब मैं दौड़ने की कोशिश करता हूं git commit
, मुझे यह त्रुटि मिली।
git commit -m "examples"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'j0h@sx.(none)')
j0h@sx:~/Learning-OpenCV-3_examples$ git config --global user.email "you@example.com"
जो मुझे समझ नहीं आ रहा है वह कौन सा नाम (ओं) और पहचान है जब यह कहता है git config --global user.name "Your Name"
इसका मतलब है कि मेरे पीसी पर नाम? या मेरे GitHub उपयोगकर्ता नाम? या मेरा ईमेल उपयोगकर्ता नाम? या कुछ और?
मैंने कई प्रकार के संयोजन आज़माए हैं, लेकिन मैं अभी भी कमांड लाइन के माध्यम से प्रतिबद्ध नहीं हो सकता।