git版本库使用方法

第一步需要安装好git工具,移步官网进行下载 点击进入git官网

1.创建版本库

  • 创建一个空文件夹(我的文件版本库名称就叫gitlib)
    • mkdir gitlib
    • cd gitlib
    • git init (把gitlib这个文件夹变成git可以管理的文件夹)
  • 2.从远程库克隆项目到git版本库 (dxc1995是我的github名称,find_douban_movies_name是项目名称)

①运行后出现以下报错

问题描述:The authenticity of host 'github.com (52.74.223.119)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com,52.74.223.119' (RSA) to the list of known hosts.
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
问题原因:Github与ssh连接需要密钥
解决办法:
第一步找到自己的密钥 git命令行输入 ssh-keygen –t rsa
然后直接一路回车
然后默认秘钥的生成位置 是在当前用户下的 .ssh 目录下 在c盘下存储着密钥
git版本库使用方法_第1张图片


.pub 的那个文件是公钥, 另一个是私钥(不要泄露,妥善保存)
用编辑器打开公钥

全选 , 复制
在githtb网站上配置公钥:

然后登陆 www.github.com 网站 登陆

登录自己的github进入项目的存储库----进入setting----部署秘钥(Deploy keys)
git版本库使用方法_第2张图片
git版本库使用方法_第3张图片
git版本库使用方法_第4张图片
git版本库使用方法_第5张图片
出现上图显示就完成了 (我取得名字叫key这个就是随便写的)

问题解决返回到克隆项目那步吧

你可能感兴趣的:(git版本库使用方法)