简易git配置教程

本文最后更新于:2023年5月26日 晚上

git配置过程

简易的git配置教程

下载git

这是图片
官网就不指望了,我曾经试了一下,用浏览器下载了一整天都没下载完(其实就刚开始几分钟有速度,到后来就变成0B/s了)
直接用镜像吧:Git下载链接
安装过程一路确认就行
详细安装方法可以参考这篇文章

设置用户名、邮箱

打开 Git Bash
输入

1
2
git config --global user.name Ghyuav    (github用户名)
git config --global user.email ghyuav2021@163.com (github绑定的邮箱)

设置ssh

输入

1
ssh-keygen -t rsa -C 'ghyuav2021@163.com'    (github绑定的邮箱)

无脑按三下Enter键。
当出现

1
2
3
4
5
6
7
8
9
10
11
+---[RSA 3072]----+
| |
| |
| |
|*乱七八糟的东西 |
| |
| |
| |
| |
| |
+----[SHA256]-----+

时,
在你的用户文件夹下 找到/.ssh目录,打开”id_rsa.pub”并复制里面的所有内容
打开你github的个人设置,点击侧边栏中的”SSH and GPG keys”,在右边的”SSH keys”中点击”New SSH key”,把刚刚的公钥粘贴进来,然后点击”Add SSH key”添加公钥。

初始化

在本地目录下打开Git Bash,输入

1
git init

选择现有远程仓库

输入

1
git remote set-url origin https://github.com/Ghyuav/ghyuav.github.io.git    (你的远程仓库地址)

完成……了吗?

push时出现了一个奇怪错误:

1
fatal: unable to access 'https://github.com/Ghyuav/ghyuav.github.io.git/': SSL certificate problem: unable to get local issuer certificate

解决:
需要解除SSL验证,再重新执行克隆或者其他操作。
输入

1
git config --global http.sslVerify false

立刻见效。


简易git配置教程
https://g-haoyu.top/2023/01/16/简易git配置教程/
作者
Haoyu
发布于
2023年1月16日
更新于
2023年5月26日
许可协议