赞
踩
(1)Git安装包的下载地址:https://git-scm.com/downloads
(2)在下图所示区中选择好各自电脑系统的版本(我的系统为Windows):
(3)选择电脑的位数,单击自动下载:
(4)下载好安装包后,双击打开安装包。然后一直点击“Next”,直到出现“install”,然后点击“install”,直到出现“finish”,最后点击“finish”,安装完成。
(5)按下“WIN + R”键打开运行窗口,然后在输入输入框中输入“cmd”打开命令窗口,然后在窗口中输入“git --version”命令查看git的安装版本,如果出现git版本信息则表示安装成功。
Git的全局配置(针对所有项目)可以在“C:\Users\用户名\”下的“.gitconfig”文件中查看。也可以在任意项目中打开“Git Bash Here”窗口,然后使用如下的命令即可进行查看:
- #查看全局配置
- $ git config --global --list
Git的局部配置(针对某个项目)可以在项目根目录“.git”文件夹下的“config”文件中查看。 如果要查看某个项目的局部配置,只需要在该项目中打开“Git Bash Here”窗口,然后输入如下命令即可进行查看,展示的信息中也会包含全局配置:
- #查看局部配置
- $ git config --list
(1)为Git配置全局(电脑中的所有项目)的用户名和邮箱【提交文件时展示的信息】,在任意项目中打开“Git Bash Here”窗口,然后输入如下命令即可:
- #配置全局的用户名
- $ git config --global user.name "lisi"
- #配置全局的邮箱
- $ git config --global user.email "list@sina.com"
当配置全局用户名或邮箱时出现如下所示错误时则说明已经存在一个全局用户名或邮箱了:
- $ git config --global user.email "zhangsan@sina.com"
- warning: user.email has multiple values
- error: cannot overwrite multiple values with a single value
- Use a regexp, --add or --replace-all to change user.email.
使用下面的命令进行全局用户名或邮箱替换
- #替换全局配置中的用户名
- $ git config --global --replace-all user.name "zhangsan"
- #替换全局配置中的邮箱
- $ git config --global --replace-all user.email "zhangsan@sina.com"
(2)为Git配置局部(电脑中的某个项目)的用户名和邮箱【提交文件时展示的信息】,在具体的项目中打开“Git Bash Here”窗口,然后输入如下命令即可:
- #配置局部的用户名
- $ git config user.name "lisi"
- #配置局部的邮箱
- $ git config user.email "list@sina.com"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。