Git安装:
- Linux系统自带:终端中输入
git
即可 - Windows系统安装:
- git下载: https://git-scm.com/download/win
- 将git添加至环境变量
git --version
查看git版本
Git配置:
git config --global --list
用于查看git配置信息,主要包括邮箱email和姓名name
PS C:\Users\qiyh> git config --global --list
core.editor="D:\Microsoft VS Code\bin\code" --wait
[email protected]
user.name=qiyh
git config --global user.email "[email protected]"
设置邮箱git config --global user.name "Your Name"
设置姓名- 去掉
--global
表示仅对该repo生效
*** 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.
Omit --global to set the identity only in this repository.
参考链接:https://blog.csdn.net/qwaszx523/article/details/79072276