Dado que ha borrado su computadora y desea revisar su proyecto nuevamente, puede comenzar haciendo la siguiente configuración inicial:
git config --global user.name "Your Name"
git config --global user.email youremail@domain.com
Inicie sesión en su cuenta de github, vaya al repositorio que desea clonar y copie la URL en "Clonar con HTTPS".
Puede clonar el repositorio remoto mediante HTTPS, incluso si había configurado SSH la última vez :
git clone https://github.com/username/repo-name.git
NOTA:
Si anteriormente había configurado SSH para su repositorio remoto, tendrá que agregar esa clave al archivo ssh de hosts conocidos en su PC; si no lo hace e intenta hacerlo git clone git@github.com:username/repo-name.git
, verá un error similar al siguiente:
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.
Usar HTTPS es más fácil que SSH en este caso.