my old username is still in use

后端 未结 2 1479
深忆病人
深忆病人 2020-12-11 13:55

I have changed my user and email for git with those commands

git config --global user.name \"maa\"
git config user.email \"maa@gmail.com\"

2条回答
  •  离开以前
    2020-12-11 14:35

    Locally:

    git config credential.username "new_username"
    

    Globally:

    git config --global credential.username  "new_username"
    

提交回复
热议问题