linux设置git用户名和密码
时间: 2023-07-18 15:26:42 浏览: 1009
git设置用户名密码的示例代码
你可以通过以下命令在 Linux 上设置 Git 的用户名和邮箱:
1. 设置用户名:
```
git config --global user.name "Your Name"
```
将 "Your Name" 替换为你想要设置的用户名。
2. 设置邮箱:
```
git config --global user.email "youremail@example.com"
```
将 "youremail@example.com" 替换为你想要设置的邮箱地址。
如果你想要在 Git 中保存密码,可以执行以下命令:
```
git config --global credential.helper store
```
这样 Git 就会在本地保存你的 Git 凭证信息,不需要每次都输入用户名和密码。
阅读全文