Как я могу настроить SSH на мой компьютер для GitHub? - PullRequest
0 голосов
/ 18 июня 2019

Я пытался настроить ssh с помощью этого учебника , но не работает, у меня всегда одна и та же ошибка. Как я могу это настроить?

У меня есть эти ключи:

user@LAPTOP-LC8KG6GU MINGW64 ~/Documents/programmi_prove/helloworld_project (master)
$ ls -al ~/.ssh
total 32
drwxr-xr-x 1 user 197609    0 giu 17 16:02 ./
drwxr-xr-x 1 user 197609    0 giu 17 17:13 ../
-rw-r--r-- 1 user 197609 3389 giu 17 23:12 id_rsa
-rw-r--r-- 1 user 197609  748 giu 17 23:12 id_rsa.pub

Это мои ошибки:

user@LAPTOP-LC8KG6GU MINGW64 ~/Documents/programmi_prove/helloworld_project (master)
$ git remote add origin https://github.com/speranza493/firstapp.git
fatal: remote origin already exists.

user@LAPTOP-LC8KG6GU MINGW64 ~/Documents/programmi_prove/helloworld_project (master)
$ git remote add origin https://github.com/speranza493/firstapp.git/
fatal: remote origin already exists.

user@LAPTOP-LC8KG6GU MINGW64 ~/Documents/programmi_prove/helloworld_project (master)
$ git push -u origin master
remote: Repository not found.
fatal: repository 'https://github.com/speranza493/firstapp.git/' not found

1 Ответ

0 голосов
/ 18 июня 2019

Ваш URL репо изменился? используйте git remote rm origin для удаления пульта и затем прочитайте его с помощью git remote add origin YOURURLHERE

...