windows git 配置
Posted leesindong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows git 配置相关的知识,希望对你有一定的参考价值。
安装
下载地址:https://git-scm.com/downloads
具体可以参考:https://blog.csdn.net/qq_32786873/article/details/80570783
一句话总结:双击->自定义目录->一直next到底
配置github
配置用户名、邮箱
//此处name可修改也不是用于登录github的登录名
git config --global user.name "username"
//github邮箱
git config --global user.email "email"
查看用户名邮箱
git config --global user.name
git config --global user.email
生成公钥
ssh-keygen -t rsa -C "yourEmail@xx.com"
按三次回车
看到保存的路径
cd ~/.ssh
# 公钥的内容在id_rsa.pub
cat .id_rsa.pub
复制id_rsa.pub中的内容,在github设置中新建ssh key,title能够为空
测试ssh
ssh -T git@github.com
如上图,报错如下
ssh: connect to host github.com port 22: Connection timed out
可能存在的原因 github的公钥配置错误了,可是我反复尝试了多次,还是有问题,原因可能是端口被占用,终于找到了解决方案:
在~/.ssh 下,即公钥的统计目录中新建config文件,内容如下
Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
再次ssh -T git@github.com,终于成功了
以上是关于windows git 配置的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段