赞
踩
Git的安装过程非常的简单,主要是他安装过程中一些过程的一些具体含义可能会有所疑惑,这里简单记录一下我学习过程中的一些步骤和问题。
第一步:从官网中下载最新版本的Git
官网地址: https://git-for-windows.github.io/.
这里的安装环境是windows10 64bit。因为是最新版本的Git所以安装时可能会和以前版本的步骤有所不同,但是也有一定的借鉴价值。
进入官网后点击Download进行下载,得到Git-2.28.0-64-bit.exe文件。
点击Next进入下一步选择安装路径
选择好安装目录后,点击Next会弹出具体安装配置窗口,其中Git Bash Here是必须要勾选的其他的初学者可能不会用到,其他每项的具体含义如下:
Additional icons 附加图标
On the Desktop 在桌面上
Windows Explorer integration Windows资源管理器集成鼠标右键菜单
Git GUI Here
Git LFS (Large File Support) 大文件支持
Associate .git* configuration files with the default text editor 将 .git 配置文件与默认文本编辑器相关联
Associate .sh files to be run with Bash 将.sh文件关联到Bash运行
Use a TrueType font in all console windows 在所有控制台窗口中使用TrueType字体
Check daily for Git for Windows updates 每天检查Git是否有Windows更新
勾选完成后点击Next进入选择Git使用的默认编辑器的窗口:
点开下拉框后建议选择Use Vim(the ubiquitous text editor) as Git’s default editor使用 Vim 作为 Git 的默认编辑器。其他选项的具体含义是:
Use the Nano editor by default 默认使用 Nano 编辑器
Use Notepad++ as Git’s default editor 使用 Notepad++ 作为 Git 的默认编辑器
Use Visual Studio Code as Git’s default editor 使用 Visual Studio Code 作为Git 的默认编辑器
Use Visual Studio Code Insiders as Git’s default editor 使用Visual Studio Code Insiders 作为 Git 的默认编辑器
选择后,点击Next进入调整Path环境变量的配置窗口:
这里新手最好是点击第一个选项,只能使用 Git Bash 的 Git 命令行工具。选择第二个选项可能会导致Git与Windows命令提示符混淆。
点击Next后,选择Http传输后端,这里直接默认即可。
直接使用默认设置,点击下一步即可。
点击下一步后来配置终端模拟器,默认的选项意思就是执行Git命令的默认终端,直接使用默认选项。
点击下一步,选择选择git pull的默认行为这里的默认选项的意思是:
Default ( fast-forward or meroeThis is the standard behavior of git pull : fast-forward the current branch tothe fetched branch when possible , otherwise create a merge commit .这是git pull的标准行为:如果可能,将当前分支快速转发到获取的分支,否则创建合并提交。这里选择默认值即可。
点击下一步,进入”选择凭据帮助程序“的窗口
使用第二个选项:Credential ManagerThe Git Credential Manager for Windows handles credentials e.g. for AzureDevops and Github ( requires . NET framework v4 . 5.1 or later ) .凭据管理器用于Windows的Git凭据管理器处理凭据,例如AzureDevops和Github的凭据(需要。NET框架v4。5.1或更高版本)。
点击下一步后进入到"配置其他选项要启用哪些功能?"的窗口。这里的默认选项的意思是:系统缓存文件系统数据将被批量读取并缓存在内存中,用于特定的操作(“核心。fscache“设置为true”)。这将显著提高性能,这里选择默认选项即可
点击下一步后进入"配置实验选项要启用哪些前沿功能?"的窗口,这里不用管他,直接下一步进行安装。
这里点击下一步进行安装,最后等待安装完成即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。