Git 教程 3 - 安装与配置

教程内容基本来自 git 官方教程 , 认真都了系列的文章,然后对一些重点的记录下来,做了简单的归纳并写上自己的思考.

1. 安装

在基于 Debian 的发行版上,使用 apt-get 安装:

1
sudo apt-get install git

2. 配置

Git 自带一个 git config 的工具来帮助设置控制 Git 外观和行为的配置变量。 这些变量存储在三个不同的位置:

(1)/etc/gitconfig 文件:包含系统上每一个用户及他们仓库的通用配置。 如果使用带有 --system 选项的 git config 时,它会从此文件读写配置变量。
(2)~/.gitconfig 或~/.config/git/config 文件:只针对当前用户。 可以传递 --global 选项让 Git 读写此文件。
(3) 当前使用仓库的 Git 目录中的 config 文件(就是 .git/config):针对该仓库。

每一个级别覆盖上一级别的配置,所以 .git/config 的配置变量会覆盖 /etc/gitconfig 中的配置变量。

配置用户信息
当安装完 Git 应该做的第一件事就是设置你的用户名称与邮件地址。 使用以下命令配置:

1
2
git config --global user.name "xxxx"
git config --global user.email xx@example.com

当你想针对特定项目使用不同的用户名称与邮件地址时,可以在那个项目目录下运行没有 --global 选项的命令来配置。

配置免密提交

生成 ssh key,然后提交到 github

1
2
3
4
5
# 生成ssh key
ssh-keygen -t rsa -C "xxx@xxx.com"

# 测试连接
ssh -T git@github.com

提交过程:(1) 登录 GitHub,点击用户头像,选择 setting;(2) 新建一个 SSH Key,将生成 SSH Key 的 id_rsa.pub 内容拷贝到此处

配置文本编辑器
Git 会使用操作系统默认的文本编辑器,通常是 Vim。 如果你想使用不同的文本编辑器,例如 Emacs,使用以下命令配置:

1
git config --global core.editor emacs

检测配置信息
如果想要检查你的配置,可以使用 git config --list 命令来列出所有 Git 当时能找到的配置。

注:你可能会看到重复的变量名,因为 Git 会从不同的文件中读取同一个配置

你可以通过输入 git config来检查 Git 的某一项配置,如查看用户名:

1
git config user.name

提交第一个仓库

在待提交的文件夹上执行以下命令

1
2
3
4
5
6
7
echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/WuShaogui/xxx.git
git push -u origin main

代理相关配置

1
2
3
4
5
6
7
8
9
10
11
12
# 设置http/https代理
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080

# 设置socks5代理
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080

# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy