跳至主要內容

windows安装配置git详细教程

tanmantang原创大约 17 分钟windowsgit开发工具

windows 安装配置Git详细教程

下载Git

阿里镜像下载(方法二)(推荐)

阿里镜像下载地址https://registry.npmmirror.com/binary.html?path=git-for-windowsopen in new window

点击进入网站后,找到你需要的版本,最新版一般都在最下面,在选择安装包文件即可下载

如2.41.0版本安装包地址为

https://registry.npmmirror.com/-/binary/git-for-windows/v2.41.0.windows.1/Git-2.41.0-64-bit.exe

注意

选择版本时,不要选择带RC版本的,RC 表示候选发布版Release Candidate,意思就是这个版本的最终测试版

开始安装Git

我下载的版本是 Git-2.41.0-64-bit.exe,接下来我们就对这个版本进行安装工作。

快速安装提示

在安装之前,你需要注意的是,本文有着大量的英文翻译和解释说明文本,若仅仅想快速 ==安装一个可用的git== ,那么请直接 ==忽略翻译和解释== ,按照黄色标记快速进行下一步即可

使用许可声明

双击下载的 Git-2.41.0-64-bit.exe,打开安装程序,直接点击 [next] 进行下一步

image-20230617151738372

设置安装目录

可点击 Browse… 更换目录,也可直接在方框里面改,我一般直接将 “C” 改为 “D”,这样就直接安装在 D 盘里了。点击 [next] 进行下一步。

image-20230617151826066

选择安装组件

可根据自己的需求选择勾选。点击 [next] 进行下一步。

image-20230617152954491

注:最后一个选项意思是,在Windows Terminal添加 Git Bash,如下图:

image-20230617163907129

添加开始菜单文件夹

方框内 Git 可改为其他名字,也可点击 Browse... 选择其他文件夹或者勾选Don't create a Start Menu folder 不创建开始菜单文件夹,点击 [next] 进行下一步。

image-20230617153129493

选择 Git 默认编辑器

Git 安装程序里面内置了几种编辑器供你挑选,比如 Atom、Notepad、Notepad++、Sublime Text、Visual Studio Code、Vim 等等,默认的是 Vim ,选择 Vim 后可以直接进行到下一步,但是 Vim 是纯命令行,操作有点难度,需要学习。如果选其他编辑器,则需要你提前安装,然后选择最后一项 Select other editor as Git's default editor 选择其他编辑器

image-20230617155003791

若选择其他编辑器,你还需要添加一个环境变量,这样才能在Git Bash 里面直接调用

我的电脑->属性->高级系统设置->高级->环境变量->系统变量->Path->编辑添加 EditPlus 的安装地址,如 D:\Program Files\EditPlus

//在 git bash 调用 editplus 打开文件
editplus 文件名

新手建议使用 Notepad++ 、Sublime Text,这两个比 Windows 自带的记事本功能多太多了。点击 [next] 进行下一步。

决定初始化新项目(仓库)的主干名字

根据需求选择,==推荐选择第二个,点击 [next] 进行下一步==

image-20230617155122317

选项一是让 Git 自己选择,名字是 master ,但是未来也有可能会改为其他名字;

选项二是我们自行决定,默认是 main,当然,你也可以改为其他的名字。

第二个选项下面有个 NEW! ,说很多团队已经重命名他们的默认主干名为 main . 这是因为2020 年非裔男子乔治·弗洛伊德因白人警察暴力执法惨死而掀起的 Black Lives Matter(黑人的命也是命)运动,很多人认为 master 不尊重黑人,呼吁改为 main.

调整 path 环境变量

==默认选择即可,点击 [next] 进行下一步==

image-20230617155235130

点开查看中文翻译
Use Git from Git Bash only
// 仅从 Git Bash 使用 Git

This is the most cautious choice as your PATH will not be modified at all. You will only be able to use the Git command line tools from Git Bash.
// 这是最谨慎的选择,因为您的 PATH 根本不会被修改。您将只能使用 Git Bash 中的 Git 命令行工具。

Git from the command line and also from 3rd-party software
// 从命令行以及第三方软件进行 Git

(Recommended) This option adds only some minimal Git wrappers to your PATH to avoid cluttering your environment with optional Unix tools.
You will be able to use Git from Git Bash, the Command Prompt and the Windov PowerShell as well as any third-party software looking for Git in PATH.
//(推荐)此选项仅将一些最小的 Git 包装器添加到PATH中,以避免使用可选的 Unix 工具使环境混乱。
// 您将能够使用 Git Bash 中的 Git,命令提示符和 Windov PowerShell 以及在 PATH 中寻找 Git 的任何第三方软件。

Use Git and optional Unix tools from the Command Prompt 
// 使用命令提示符中的 Git 和可选的 Unix 工具

Both Git and the optional Unix tools will be added to your PATH.
Warning: This will override Windows tools like "find"and "sort". Only use this option if you understand the implications.
// Git 和可选的 Unix 工具都将添加到您的 PATH 中。
// 警告:这将覆盖 Windows 工具,例如 "find" and "sort". 仅在了解其含义后使用此选项。
如何选择

第一项是 仅从 Git Bash 使用 Git 这个的意思就是你只能通过 Git 安装后的 Git Bash 来使用 Git ,其他的什么命令提示符啊等第三方软件都不行。

第二项从命令行以及第三方软件进行 Git 这个就是在第一种基础上进行第三方支持,你将能够从 Git Bash,命令提示符(cmd) 和 Windows PowerShell 以及可以从 Windows 系统环境变量中寻找 Git 的任何第三方软件中使用 Git。==推荐选择这个== 。

第三项是 从命令提示符使用 Git 和可选的 Unix 工具 选择这种将覆盖 Windows 工具,如 “ find 和 sort ”。只有在了解其含义后才使用此选项。一句话,适合比较懂的人折腾。

选择 SSH 执行文件

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617160643296

点开查看中文翻译
Use bundled OpenSSH 
This uses ssh. exe that comes with Git.
使用捆绑的 OpenSSH
这使用的 ssh.exe 是 Git 自带的 

Use external OpenSSH 
NEW! This uses an external ssh. exe. Git will not install its own OpenSSH
(and related) binaries but use them as found on the PATH.
使用外部 OpenSSH
新!这使用外部 ssh.exe 文件。 
Git 不会安装自己的 OpenSSH(和相关)二进制文件,而是使用在环境变量 PATH 中找到的它们。

选择HTTPS后端传输

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617161612478

点开查看中文翻译
use the OpenSSL library 
Server certificates will be validated using the ca-bundle. crt file.
使用 OpenSSL 库
服务器证书将使用 ca-bundle.crt 文件进行验证。
	
Use the native Windows Secure Channel library 
Server certificates will be validated using Windows Certificate Stores.
This option also allows you to use your company's internal Root CA certificates distributed e.g. via Active Directory Domain Services.
使用本机 Windows 安全通道库
服务器证书将使用 Windows 证书存储进行验证。
此选项还允许您使用公司内部分发的内部根 CA 证书,例如通过 Active Directory 域服务。
如何选择

两个选项有什么区别呢?

请查看来自stackoverflowopen in new window论坛的解释

如果在具有企业管理证书的组织中使用 Git,则将需要使用安全通道。如果你仅使用 Git 来访问公共存储库(例如 GitHub ),或者你的组织不管理自己的证书,那么使用 SSL 后端(它们只是同一协议的不同实现)就可以了。

也就是说,作为普通用户,只是用 Git 来访问 Github、GitLab 等网站,选择前者就行了

配置行尾符号转换

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617161756188

点开查看中文翻译
Checkout Windows-style, commit Unix-style line endings 
Git will convert LF to CRLF when checking out text files. 
When committing text files, CRLF will be converted to LF. For cross-platform projects, this is the recommended setting on Windows("core. autocrif"is set to "true").
签出 Windows 样式,提交 Unix 样式的行结尾
Git 签出文本文件时,会将 LF 转换为 CRLF。
提交文本文件时,CRLF 将转换为 LF。
对于跨平台项目,这是 Windows 上的建议设置("core.autocrif" 设置为 "true")。

Checkout as-is, commit Unix-style line endings 
Git will not perform any conversion when checking out text files. 
When committing text files, CRLF will be converted to LF. For cross-platform projects, this is the recommended setting on Unix("core.autocrif" is set to "input").
按原样签出,提交 Unix 样式的行结尾
Git 在签出文本文件时不会执行任何转换。提交文本文件时,CRLF 将转换为 LF。
对于跨平台项目,这是在 Unix 上的建议设置("core.autocrif" 设置为 "input")。

Checkout as-is, commit as-is 
Git will not perform any conversions when checking out or committing text files. 
Choosing this option is not recommended for cross-platform projects("core. autocrif"is set to "false").
按原样签出,按原样提交
Git 在签出或提交文本文件时不会执行任何转换。
不建议跨平台项目选择此选项("core.autocrif" 设置为 "false")。
如何选择
这三种选择分别是:
签出 Windows 样式,提交 Unix 样式的行结尾。
按原样签出,提交Unix样式的行结尾。
按原样签出,按原样提交。

那 Windows 样式和 Unix 样式到底有什么区别呢?

引用 《GitHub入门与实践》open in new window 第 50 页内容 [1]

GitHub 中公开的代码大部分都是以 Mac 或 Linux 中的 LF(Line Feed)换行。然而,由于 Windows 中是以 CRLF(Carriage Return+ Line Feed)换行的,所以在非对应的编辑器中将不能正常显示。

Git 可以通过设置自动转换这些换行符。使用 Windows 环境的各位,请选择推荐的 “Checkout Windows-style,commit Unix-style line endings” 选项。换行符在签出时会自动转换为 CRLF,在提交时则会自动转换为 LF .

上面说 Mac 、Linux、Unix 的 Line Feed ,翻译过来就是换行符,用 “\n” 表示,换行符 “\n” 的 ASCII 值为10; Windows 的是 Carriage Return+ Line Feed(回车+换行),用 “\r\n” 表示,回车符 “\r” 的 ASCII 值为13;

这上下两者是不一样的。所以这就需要转换了,至于为什么选第一项?

这还用问吗?我们现在的教程就是介绍怎么安装 Windows 版 Git,肯定选第一项啦。

至于 “回车”(carriage return)和 “换行”(line feed)这两个概念的来历和区别? 引用一下 阮一峰老师博客的部分内容open in new window

在计算机还没有出现之前,有一种叫做电传打字机(Teletype Model 33)的玩意,每秒钟可以打10个字符。但是它有一个问题,就是打字机打完一行换行的时候,要用去0.2秒,正好可以打两个字符。要是在这0.2秒里面,又有新的字符传过来,那么这个字符将丢失。

于是,研制人员想了个办法解决这个问题,就是在每行后面加两个表示结束的字符。一个叫做"回车",告诉打字机把打印头定位在左边界;另一个叫做"换行",告诉打字机把纸向下移一行。

更多资料参考:

配置终端模拟器以与 Git Bash 一起使用

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617162806178

点开查看中文翻译
Use MinTTY(the default terminal of MSYS2) 
Git Bash will use MinTTY as terminal emulator, which sports a resizable window
non-rectangular selections and a Unicode font.Windows console programs(such
as interactive Python) must be launched via 'winpty' to work in MinTTY.
使用 MinTTY(MSYS2的默认终端)
Git Bash 将使用 MinTTY 作为终端仿真器,该仿真器具有可调整大小的窗口非矩形选择和 Unicode 字体。
Windows 控制台程序(例如交互式 Python)必须通过 "winpty" 启动才能在 MinTTY 中运行。

Use Windows' default console 
window Git will use the default console window of Windows("cmd.exe"), which works v
with Win32 console programs such as interactive Python or node. js, but has a
very limited default scroll-back,needs to be configured to use a Unicode font in 
order to display non-ASCII characters correctly, and prior to Windows 10 its 
window was not freely resizable and it only allowed rectangular text selections.<br>
使用 Windows 的默认控制台窗口
Git 将使用 Windows 的默认控制台窗口("cmd.exe"),该窗口可与 Win32 控制台程序(例如交互式Python 或 
node.js)一起使用,但默认回滚非常有限,需要将其配置为使用 Unicode 字体才能正确显示非 ASCII 字符,并且在 
Windows 10 之前,其窗口不可随意调整大小,并且仅允许选择矩形文本。
如何选择

建议选择第一种,MinTTY 3功能比 cmd 多,cmd 只不过 比 MinTTY 更适合处理 Windows 的一些接口问题,这个对 Git 用处不大,除此之外 Windows 的默认控制台窗口(cmd)有很多劣势,比如 cmd 具有非常有限的默认历史记录回滚堆栈和糟糕的字体编码等等。 相比之下,MinTTY 具有可调整大小的窗口和其他有用的可配置选项,可以通过右键单击的工具栏来打开它们 git-bash。

选择默认的 “git pull” 行为

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617162947788

点开查看中文翻译
Default(fast-forward or merge)
This is the standard behavior ofgit pull": fast-forward the current branch to 
the fetched branch when possible, otherwise create a merge commit.
默认(快进或合并)
这是 "git pull" 的标准行为:在可能的情况下将 当前分支 快进到 获取的分支,否则创建合并提交。

Rebase Rebase the current branch onto the fetched branch. If there are no local 
commits to rebase, this is equivalent to a fast-forward.
变基将当前分支变基到获取的分支上。如果没有本地提交要变基,则等同于快进。

only ever fast-forward 
Fast-forward to the fetched branch. Fail if that is not possible.
只能快进快进到获取的分支。如果不可能,则失败。
如何选择

“git pull” 是什么意思呢?git pull 就是获取最新的远程仓库分支到本地,并与本地分支合并

上面给了三个 “git pull” 的行为: 第一个是 merge 第二个是 rebase 第三个是 直接获取

第一种 git pull = git fetch + git merge 第二种 git pull = git fetch + git rebase 第三种 git pull = git fetch ?这个没试过,纯属猜测

一般默认选择第一项,git rebase 绝大部分程序员都用不好或者不懂,而且风险很大,但是很多会用的人也很推崇,但是用不好就是灾难。

git pull 只是拉取远程分支并与本地分支合并,而 git fetch 只是拉取远程分支,怎么合并,选择 merge 还是 rebase ,可以再做选择。

更多参考资料:

选择一个凭证帮助程序

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617163219685

点开查看中文翻译
Git Credential Manager 
Use the cross-platform Git Credential Manager.
See more information about the future of Git Credential Manager here.
Git 凭证管理
使用跨平台的 Git  凭证管理。
在此处查看有关 Git 凭证管理未来的更多信息。

None 
Do not use a credential helper.
不使用凭证助手。
如何选择

一共两个选项: Git 凭证管理不使用凭证助手 第一个选项是提供登录凭证帮助的,Git 有时需要用户的凭据才能执行操作;例如,可能需要输入用户名密码才能通过 HTTP 访问远程存储库(GitHub,GItLab 等等)。

配置额外的选项

==建议选择默认第一项,点击 [next] 进行下一步==

image-20230617163401220

点开查看中文翻译
Enable file system caching 
File system data will be read in bulk and cached in memory for certain operations("core.fscache" is set to "true"). 
This provides a significant performance boost.
启用文件系统缓存
将批量读取文件系统数据并将其缓存在内存中以进行某些操作("core.fscache” 设置为 "true")。
这可以显着提高性能。

Enable symbolic links 
Enable symbolic links(requires the SeCreateSymbolicLink permission).
Please note that existing repositories are unaffected by this setting.
启用符号链接
启用符号链接(需要SeCreateSymbolicLink权限)。
请注意,现有存储库不受此设置的影响。
如何选择

有两个选项: 启用文件系统缓存 启用符号链接

启用文件系统缓存就是将批量读取文件系统数据并将其缓存在内存中以进行某些操作,可以显著提升性能。这个选项默认开启。 启用符号链接 ,符号链接是一类特殊的文件, 其包含有一条以绝对路径或者相对路径的形式指向其它文件或者目录的引用,类似于 Windows 的快捷方式,不完全等同 类Unix(如 Linux) 下的 符号链接。因为该功能的支持需要一些条件,所以默认不开启。

配置实验性选项

建议默认 ==不选,点击 [Install] 进行安装==

image-20230617163455003

点开查看中文翻译
Enable experimental support for pseudo consoles.
(NEW!) This allows running native console programs like Node or Python in a Git Bash window without using winpty, 
but it still has known bugs.
启用对伪控制台的实验性支持。
(新功能!) 这允许在不使用 winpty 的情况下在 Git Bash 窗口中运行诸如 Node 或 Python 之类的本机控制台程序,
但是它仍然存在已知的 bug。

Enable experimental built-in file system monitor
(NEW!) Automatically run a built-in file system watcher, to speed up common operations such as ' git status', ' git add', ' git commit', etc in worktrees containing many files.
启用实验性内置文件系统监视器
(新!)自动运行内置文件系统监视器,以加快包含许多文件的工作树中的常见操作,例如 'git status'、'git add'、'git commit' 等.

等待安装完成

image-20230617163550361

image-20230617163720092

View Release Note 查看版本说明,就是增加了什么功能,修复了什么 bug 之类的。

全局设置用户名和邮箱

用户名和邮箱地址的作用

  • 用户名和邮箱地址是本地git客户端的一个变量
  • 每次commit都会用用户名和邮箱纪录。
  • github的contributions统计就是按邮箱来统计的。

查看用户名和邮箱地址

git config user.name
git config user.email

若还没设置过,则便是空的,没有任何输出

设置全局用户和邮箱

git config --global user.name "username"
git config --global user.email "email"

其他配置设置

# git config命令的–global参数  表示全局设置
 
# 查看git配置信息
git config --list
 
# 查看git用户名、密码、邮箱的配置
git config user.name
git config user.password
git config user.email
 
# 设置git用户名、密码、邮箱的配置
git config user.name "username"
git config user.password "password"
git config user.email "your@email.com"


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

# 修改git用户名、密码、邮箱的配置(全局配置)
git config --global user.name "username"
 
# 删除git用户名、密码、邮箱的配置
git config --global --unset user.name "username"
git config --global --unset user.password "password"
git config --global --unset user.email "your@email.com"

  1. 《GitHub入门与实践》 ↩︎