Github 在git hub中创建新存储库

Github 在git hub中创建新存储库,github,repository,remote-access,Github,Repository,Remote Access,我在GitHub的某个地方有个项目, https:github.com/vidurasilva/loging_Form.git 我一个接一个地使用命令,也有错误 C:\wamp\www\PhpProject>git远程添加源https:github.com/vidurasilva/Register\u For\u New.git 致命:远程源已存在 C:\wamp\www\PhpProject>git push-u原始主机 致命:无法访问“https:github.com/vidurasilva

我在GitHub的某个地方有个项目,
https:github.com/vidurasilva/loging_Form.git

我一个接一个地使用命令,也有错误

C:\wamp\www\PhpProject>git远程添加源https:github.com/vidurasilva/Register\u For\u New.git
致命:远程源已存在

C:\wamp\www\PhpProject>git push-u原始主机 致命:无法访问“https:github.com/vidurasilva/loging_Form.git/”:无法解析主机“github.com”

C:\wamp\www\PhpProject>git远程设置url源git@github.com:vidurasilva/Register\u Form\u New.git

C:\wamp\www\PhpProject>git push-u origin——全部 ssh:无法解析主机名github.com:名称或服务未知 致命:无法从远程存储库读取

请确保您拥有正确的访问权限 并且存储库存在

C:\wamp\www\PhpProject>git clone https:github.com/vidurasilva/Register\u Form\u New.git

克隆到
注册表\u Form\u New
。。。 致命:无法访问https:github.com/vidurasilva/Register\u Form\u New.git/:无法解析主机

git remote remove origin
git remote add https://github.com/vidurasilva/Register_Form_New.git
git push origin master
有关更多帮助,请访问。

首先修复此问题

git remote add origin https:github.com/vidurasilva/Register_For_New.git 
用这个

git remote add origin https://github.com/vidurasilva/Register_For_New.git 
git clone https://github.com/vidurasilva/Register_Form_New.git
然后解决这个问题

git clone https:github.com/vidurasilva/Register_Form_New.git
用这个

git remote add origin https://github.com/vidurasilva/Register_For_New.git 
git clone https://github.com/vidurasilva/Register_Form_New.git

@K.V.C.Silva,请不要只说“不起作用”或“出错”。这些错误消息很重要。你需要准确地告诉我们他们说了什么。否则我们只能猜测。