一共有三个范围的用户
- 当前仓库
local
- 全局,当前系统用户
global
- 系统
system
例如:
git config user.name
就是打印当前仓库的用户
其他的修改需要带上参数,比如:
git config --global user.name <new_username>
user 相关参数
- name
- password
e.g.
user.name user.password user.email
Git 免重复登录
如果 git push 的时候每次都需要输入密码可以试试这个
(可以对应到上面提到的不同范围 local, global, system)
git config credential.helper store