เนื่องจากคุณได้ล้างข้อมูลคอมพิวเตอร์ของคุณและต้องการชำระเงินโครงการของคุณอีกครั้งคุณสามารถเริ่มต้นด้วยการตั้งค่าเริ่มต้นด้านล่าง:
git config --global user.name "Your Name"
git config --global user.email youremail@domain.com
เข้าสู่ระบบบัญชี github ของคุณไปที่ที่เก็บที่คุณต้องการโคลนและคัดลอก URL ภายใต้ "โคลนด้วย HTTPS"
คุณสามารถโคลนที่เก็บระยะไกลโดยใช้ HTTPS แม้ว่าคุณจะตั้งค่า SSH ในครั้งสุดท้าย :
git clone https://github.com/username/repo-name.git
บันทึก:
หากคุณเคยตั้งค่า SSH สำหรับที่เก็บระยะไกลของคุณก่อนหน้านี้คุณจะต้องเพิ่มคีย์นั้นลงในไฟล์โฮสต์ ssh ที่รู้จักบนพีซีของคุณ หากคุณไม่ทำและพยายามทำgit clone git@github.com:username/repo-name.git
คุณจะเห็นข้อผิดพลาดคล้ายกับข้อผิดพลาดด้านล่าง:
Cloning into 'repo-name'...
The authenticity of host 'github.com (192.30.255.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXDoJWGl7E1IGOCspZomTxdCARLviMw6E5SY8.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com,192.30.255.112' (RSA) to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
การใช้ HTTPS นั้นง่ายกว่า SSH ในกรณีนี้