git Windows连接github
Posted luoyangyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git Windows连接github相关的知识,希望对你有一定的参考价值。
1.注册github账号
2.下载安装git 客户端 (安装后 包含git gui,git bash,git cmd)
3.打开git bash (bash是cmd的升级版,建议使用bash)
输入如下命令,并按回车
git config --global user.name "github用户名"
git config --global user.email "github邮箱"
ssh-keygen -t rsa -C "github邮箱" //生成ssh key
4.ssh key 在C:Userslwx655516.ssh的 id_rsa.pub
复制粘贴至github settings / ssh and GPG keys 粘贴至ssh key
5.测试连接
ssh -T [email protected]
以上是关于git Windows连接github的主要内容,如果未能解决你的问题,请参考以下文章