这篇记录下在WSL(Ubuntu-20.04)下如何配置git环境。
安装git
直接使用apt-get即可。
sudo apt-get install git
随后使用whereis git
或者git --version
检查是否安装完成。
配置git
- 配置你的用户名
git config --global user.name xxx
- 配置你的邮箱地址
git config --global user.email [email protected]
- 查看是否配置成功
git