Skip to content

1. 介绍

2. 安装

2.1 下载

https://gitforwindows.org/

3. 配置

配置用户名和邮箱

bash
git config --global user.name "你的名字"

git config --global user.mail "你的邮箱"
git config --global user.name "你的名字"

git config --global user.mail "你的邮箱"
  • 查看配置
bash
git config user.name

git config --list
git config user.name

git config --list

3.1 配置 Git 信息的输出格式

git config --global alias.lg "log --pretty=format:'%C(yellow)%h %Creset%s %C(green)(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
git config --global alias.lg "log --pretty=format:'%C(yellow)%h %Creset%s %C(green)(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

3.2 补全历史命令

curl -L http://hengyunabc.github.io/bash_completion_install.sh | sh
bind -f  ~/.inputrc
curl -L http://hengyunabc.github.io/bash_completion_install.sh | sh
bind -f  ~/.inputrc

3.3 配置 Git 忽略文件大小写

默认情况下,Windows 平台上的 Git 不会区分文件名的大小写。如果希望 Git 区分大小写,可以进行如下配置:

git config --global core.ignorecase false
git config --global core.ignorecase false

3.4 配置 Git 中文文件名乱码问题

# 设置字符编码为 UTF-8
git config --global core.quotepath off
# 设置字符编码为 UTF-8
git config --global core.quotepath off

3.5 置 Git 历史记录显示分支和标签

git config --global log.decorate true
git config --global log.decorate true