Where is my remote git repository password stored on the local machine?

后端 未结 3 837
暖寄归人
暖寄归人 2021-02-03 23:04

I have a git repository set up on bitbucket

$ git remote -v
origin  https://myusername@bitbucket.org/myusername/my_repository_name.git (fetch)
origin  https://my         


        
3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-03 23:35

    if $ git config credential.helper returns manager, the password is stored in the windows credential manager, if it returns store, password is stored in a .git-credentials file in the user folder.

提交回复
热议问题