Git credential helper - update password

前端 未结 10 1459
遥遥无期
遥遥无期 2020-12-07 08:21

I\'m currently using GitHub over HTTPS and have the latest version of Git installed (1.9.0) along with the Git credential helper on Windows 7.

On setting up my envir

10条回答
  •  萌比男神i
    2020-12-07 09:03

    Just cd in the directory where you have installed git-credential-winstore. If you don't know where, just run this in Git Bash:

    cat ~/.gitconfig
    

    It should print something looking like:

    [credential]
        helper = !'C:\\ProgramFile\\GitCredStore\\git-credential-winstore.exe'
    

    In this case, you repository is C:\ProgramFile\GitCredStore. Once you are inside this folder using Git Bash or the Windows command, just type:

    git-credential-winstore.exe erase
    host=github.com
    protocol=https
    

    Don't forget to press Enter twice after protocol=https.

提交回复
热议问题