Reputation: 11
I have installed the git command line. Every time I try to clone a repo I get an authentication error.
fatal: Authentication failed for ....
It works on my mac but not on my windows laptop. Does anyone have an idea?
Upvotes: 1
Views: 9460
Reputation: 1
I have got same error. Go to control panel -> User Account --> Credential Manager and edit git credentials.
Upvotes: 0
Reputation: 133
you can use code in command line
git clone https://[email protected]/.../project_name.git
or
git clone https://username:[email protected]/.../project_name.git
Upvotes: 1
Reputation: 1419
Should save git auth username and password on windows credential manager
Upvotes: 0