📅  最后修改于: 2023-12-03 14:41:31.223000             🧑  作者: Mango
在使用GitLab进行代码托管时,我们可能需要设置全局的用户名和密码。这可以方便我们在使用git push
等命令时不需要每次都输入用户名和密码。
以下是在Shell/Bash环境下设置GitLab全局用户名和密码的方法。
打开终端,运行以下命令:
$ git config --global user.name "Your Name"
把Your Name
替换成你的GitLab用户名。
# 设置全局用户名
$ git config --global user.name "Your Name"
打开终端,运行以下命令:
$ git config --global user.password "Your Password"
把Your Password
替换成你的GitLab密码。
# 设置全局密码
$ git config --global user.password "Your Password"
git config --list
查看当前Git配置情况。若要查看或更改某个配置项的值可以使用git config user.name
或git config user.password
命令。