前情提示:
Mac OS下PD Windows10;
Git2.25.164位;https://github.com/git-for-windows/git/releases/download/v2.25.1.windows.1/Git-2.25.1-64-bit.exe
前言:在Linux下直接可以通过命令可以安装使用Git,Windows下可以通过Git bash来使用。
1.下载:以下下载地址均可以https://git-scm.com/downloads
2.安装
双击打开,每一步直接下一步next默认即可。
选择安装路径
默认第二项,会自动配置环境变量
第一项更新文件用Windows风格,提交用Unix风格,保证兼容
直接下一步,安装完成
安装完成找到Git bash
至此,安装完成。
安装完成后进行简单配置:
$ git config --global user.name "你的名称"
$ git config --global user.email "你的邮箱"
设置完成后,可以使用git config --list查看配置内容。
额外:
Windows下Git的安装与使用:https://blog.csdn.net/qq_31708763/article/details/91357257
下一篇:第一个demo项目: