woods1815

 

获取当前登陆用户:

git config user.name   //获取当前登录的用户
git config user.email  //获取当前登录用户的邮箱

 

修改登陆用户:

git config --global user.name \'userName\'    // 修改登陆账号,userName为你的git账号
git config --global user.email \'email\'      // 修改登陆邮箱,email为你的git邮箱
git config --global user.password \'password\'  // 修改登陆密码,password为你的git密码

 

分类:

技术点:

相关文章:

  • 2021-12-01
  • 2021-06-24
  • 2021-11-11
  • 2021-10-19
  • 2021-10-19
  • 2021-12-06
猜你喜欢
  • 2021-04-17
  • 2021-04-15
  • 2021-09-24
  • 2021-11-02
  • 2021-11-02
  • 2021-04-30
相关资源
相似解决方案