HTTP Basic: Access denied fatal: Authentication failed

后端 未结 14 1432
无人及你
无人及你 2021-01-30 02:23

I use GitLab Community Edition 9.1.3 2e4e522 on Windows 10 Pro x64. With Git client.

Error

Cloning into \'project_name\'...
remote: HTTP Basic: Access de         


        
14条回答
  •  一生所求
    2021-01-30 03:00

    Before digging into the solution lets first see why this happens.

    Before any transaction with git that your machine does git checks for your authentication which can be done using

    1. An SSH key token present in your machine and shared with git-repo(most preferred) OR
    2. Using your username/password (mostly used)

    Why did this happen

    In simple words, this happened because the credentials stored in your machine are not authentic i.e.there are chances that your password stored in the machine has changed from whats there in git therefore

    Solution

    Head towards, control panel and search for Credential Manager look for your use git url and change the creds.

    There you go this works with mostly every that windows keep track off

提交回复
热议问题