Remove credentials from Git

后端 未结 30 1701
不知归路
不知归路 2020-11-21 10:13

I\'m working with several repositories, but lately I was just working in our internal one and all was great.

Today I had to commit and push code into other one, but

30条回答
  •  甜味超标
    2020-11-21 10:31

    Execute the following command in a PowerShell console to clear Git Credentials Managers for Windows cache:

    rm $env:LOCALAPPDATA\GitCredentialManager\tenant.cache
    

    or in Cmd.exe

    rm %LOCALAPPDATA%\GitCredentialManager\tenant.cache
    

提交回复
热议问题