विधि-1
अपने खाते की डिफ़ॉल्ट पहचान को globally
कमांड के नीचे चलाने के लिए सेट करें
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git config --global user.password "your password"
केवल वर्तमान रिपॉजिटरी में पहचान सेट करने के लिए, --global
अपने प्रोजेक्ट / रेपो रूट डायरेक्टरी में कमांड्स को हटाएं और चलाएँ
git config user.email "you@example.com"
git config user.name "Your Name"
git config user.password "your password"
उदाहरण:
email -> organization email Id
name -> mostly <employee Id> or <FirstName, LastName>
** नोट: ** आप इन मूल्यों को अपने GitHub प्रोफ़ाइल या Bitbucket प्रोफ़ाइल में देख सकते हैं
विधि-2
अगर यह मौजूद नहीं है तो अपने होम फोल्डर में .gitconfig फ़ाइल बनाएँ। और .gitconfig में निम्न पंक्तियाँ चिपकाएँ
[user]
name = FirstName, LastName
email = FirstName.LastName@company.com
[http]
sslVerify = false
proxy =
[https]
sslverify = false
proxy = https://corp\\<uname>:<password>@<proxyhost>:<proxy-port>
[push]
default = simple
[credential]
helper = cache --timeout=360000000
[core]
autocrlf = false
होम निर्देशिका बनाने के लिए .gitconfig फ़ाइल:
विंडोज़: सी / यूजर्स / <यूजरनेम या एम्पिड>
Mac या Linux: होम डायरेक्टरी में जाने के लिए इस कमांड को रन करेंcd ~
या बस एक के बाद एक निम्नलिखित कमांड चलाते हैं
git config --global --edit
git commit --amend --reset-author
विधि -3 (git क्रेडेंशियल पॉप अप)
खिड़कियाँ :
कंट्रोल पैनल >> यूजर अकाउंट >> क्रेडेंशियल मैनेजर >> विंडोज क्रेडेंशियल >> जेनेरिक क्रेडेंशियल
किसी भी github सर्टिफिकेट / क्रेडेंशियल को देखें और उसे हटा दें।
मैक :
कमांड + स्पेस >> "कीचेन एक्सेस" के लिए खोजें और किसी भी सर्टिफिकेट / फ़ाइल के लिए खोज पर क्लिक करें।
फिर कोई भी git कमांड चलाने से नए उपयोगकर्ता नाम और पासवर्ड दर्ज करने का संकेत मिलेगा।