Git 是跨平台的,可以在 Windows,Linux、Unix 和 Mac 各几大平台上使用
由于笔者主要是使用 Windows,其他平台下安装 Git 的方法暂且不表(可参考廖雪峰老师的博客:安装 Git)
Windows 安装 Git
从 Git 官网直接下载安装程序,安装时大部分选项是英文说明的,如果看不懂,那就不用看懂,默认安装,直接无脑一路 next。
安装完成后,重新打开 cmd,输入 git --version
,如果有正常输出,则安装成功:
$ git --version
git version 2.31.0.windows.1
也可以在开始菜单里找到“Git”->“Git Bash”,蹦出一个类似命令行窗口的东西,在里面操作 Git,可以使用不少 Linux 下的命令,例如 vim,ls 等,挺方便的。还可以在文件夹里右键,打开 Git Bash:
更新 Git
Git 自带更新功能。Windows git 更新命令:
# 2.17.1版本之前git
$ git update
# 2.17.1版本之后git
$ git update-git-for-windows
注意:2.14.1 及之前版本的 git 没有 update 相关命令,使用 update 命令会报错
git: 'xxx' is not a git command
Linux git 更新命令:
# 1.添加git官方软件源
$ sudo add-apt-repository ppa:git-core/ppa
# 2.更新git
$ sudo apt update
$ sudo apt-get update
$ sudo apt-get install git
配置 Git
安装完 Git 后,我们可以进行一些配置。因为 Git 支持多人协同操作,为了区分,通常需要配置姓名和邮箱。
所以安装完 Git 后,首先输入以下命令进行配置(请读者换成自己的姓名和邮箱):
$ git config --global user.name "peterjxl"
$ git config --global user.email "[email protected]"
如果不配置,是上传不了代码的,会有如下报错(上传也叫提交,commit):
$ git commit -m "wrote a readme file"
Author identity unknown
*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
to set your account's default identity.
你也许会担心,如果有人故意冒充别人怎么办?我们可以通过一些方法使得我们的提交无法被冒充,感兴趣并且有一定基础的童鞋可以看看这篇博客:
标签:git,--,config,配置,Git,user,安装 From: https://www.cnblogs.com/PeterJXL/p/18431373