在 IntelliJ IDEA 中更改 Git 用户

2022-08-31 11:27:56

我的IntelliJ IDEA被另一个用户使用,当我尝试推送到Git时,我被问到这个用户的密码。

如何在我的IDEA中更改用户?我试图更改全局 Git 用户,但它不起作用。


答案 1
  1. 转到项目的基目录。

  2. 你会发现一个名为 的隐藏目录。进入它。.git

  3. 在那里,您将看到一个名为 的文件。添加以下代码。config

    [user]
          name = username
          email = username@domain.example
    

答案 2

您可以通过2个选项中的任何一个将其全局更改。

  1. “Git Bash”,它随 git 安装包一起提供。
  2. 在 IntelliJ View > Tool Windows > Terminal (Alt + F12) 中。

使用命令 :

git config --global user.name "John Doe"

推荐