Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/git/23.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法从Windows访问GitHub_Git_Github - Fatal编程技术网

无法从Windows访问GitHub

无法从Windows访问GitHub,git,github,Git,Github,我正在努力使叉子保持最新,并遵循以下步骤 第一步我已经试过了 git clone git@github.com:isaaclem/react-native-calendars.git 下面是我得到的反馈 我认为这与配置文件没有配置有关,所以我 git config --global user.name "xxx" git config --global user.email "xxx" 下面是配置的完整列表,不确定是否有帮助 core.symlinks=false core.autocrl

我正在努力使叉子保持最新,并遵循以下步骤

第一步我已经试过了

git clone git@github.com:isaaclem/react-native-calendars.git
下面是我得到的反馈

我认为这与配置文件没有配置有关,所以我

git config --global user.name "xxx"
git config --global user.email "xxx"
下面是配置的完整列表,不确定是否有帮助

core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/ssl/certs/ca-bundle.crt
diff.astextplain.textconv=astextplain
rebase.autosquash=true
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=manager
user.name=*masked*
user.email=*masked*

我还可以尝试什么,或者我可以向哪个方向去克隆它们呢?您必须创建ssh密钥并将公钥注册到github。

您必须创建ssh密钥并将公钥注册到github。

如果您试图用ssh克隆repo,则必须生成ssh密钥并添加到github。 但是,如果您使用HTTPS进行克隆,则应使用
git config credential.helper'存储[选项]'创建凭据。


从这里开始阅读:

如果您试图使用SSH克隆repo,则必须生成SSH密钥并添加到GitHub。 但是,如果您使用HTTPS进行克隆,则应使用
git config credential.helper'存储[选项]'创建凭据。

从这里读: