Como você apagou seu computador e deseja verificar seu projeto novamente, pode começar fazendo as configurações iniciais abaixo:
git config --global user.name "Your Name"
git config --global user.email youremail@domain.com
Faça login em sua conta do github, vá para o repositório que deseja clonar e copie o URL em "Clonar com HTTPS".
Você pode clonar o repositório remoto usando HTTPS, mesmo que tenha configurado o SSH da última vez :
git clone https://github.com/username/repo-name.git
NOTA:
Se você configurou o SSH para seu repositório remoto anteriormente, terá que adicionar essa chave ao arquivo ssh de hosts conhecidos em seu PC; se você não fizer isso e tentar fazer git clone git@github.com:username/repo-name.git
, verá um erro semelhante ao seguinte:
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 é mais fácil do que SSH neste caso.