GIT博客常用命令

配置用户名、密码、邮箱

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# git config命令的–global参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。

# 1.查看git配置信息
$ git config --list


# 2.查看git用户名、密码、邮箱的配置
$ git config user.name
$ git config user.password
$ git config user.email


# 3.设置git用户名、密码、邮箱的配置
$ git config user.name "hoveco"
$ git config user.password "123456"
$ git config user.email "123456789@qq.com"
# 3.设置git用户名、密码、邮箱的配置(全局配置)
$ git config --global user.name 用户名
$ git config --global user.name hoveco
$ git config --global user.password 密码
$ git config --global user.password 11223344
$ git config --global user.password 邮箱
$ git config --global user.email "123456789@qq.com"


# 4.修改git用户名、密码、邮箱的配置(跟设置语法一样,没有用户名就添加,有了用户名就修改)
$ git config user.name "hoveco"
# 4.修改git用户名、密码、邮箱的配置(全局配置)
$ git config --global user.name "hoveco"


# 5.删除git用户名、密码、邮箱的配置
#删除用户、邮箱信息
$ git config --unset user.name
$ git config --unset user.email
#删除用户、邮箱信息(全局配置)
$ git config --global --unset user.name
$ git config --global --unset user.email

git配置ssh生成密钥对

SSH密匙是什么?

  SSH (Secure Shell) 密钥是用于身份验证和加密通信的一对加密密钥。它由两个部分组成:私钥(private key)和公钥(public key)。这对密钥是通过非对称加密算法生成的,其中私钥用于加密数据,而公钥用于解密数据

配置方法

打开git命令行

新建一个文件夹作为代码仓库。在文件夹里面右键,点击 git bash here

生成SSH Key
1
2
# 你的Github绑定的邮箱
ssh-keygen -t rsa -C "***@gmail.com"

  PS: -C后面是个注释信息,并不一定要和你Git账户的邮箱或者Git账户名保持一致,只是常常是
和你账户邮箱保持一致,这样设置,就能知道这个公钥被绑定在哪个Git账户上了

  按3次“回车”后,生成ssh-rsa的字符串(包括ssh-rsa)

查看密匙文件

在下图位置找到相对应的文件,并用记事本打开文件id_rsa.pub(地址位置:C:\Users\你的账户名字\ .ssh)

image-20240627102036246

github里面添加SSH Key

  位置:github头像—-Settings—-SSH and GPG Keys

  新增一个密匙,名称随便写,值选择上面id_rsa.pub里面的内容