因为我第一次弄错了,Git不允许我输入我的克隆密码

问题描述 投票:1回答:1

我运行了一次命令,并弹出一个说我需要输入用户名和密码的弹出窗口,然后我没有输入正确的命令,现在输入用户名和密码的窗口没有显示出来

C:\Users\User\Desktop>git clone https://gitlab.com/group/project.git
Cloning into 'project'...
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'https://gitlab.com/group/project.git/'

有没有办法让我重做这个,以便我可以再次输入用户名和密码?

git git-clone
1个回答
0
投票

正如我和最近的Git一样,mention here尝试:

git credential-manager delete https://gitlab.com

这应该重置缓存的凭据,下一个克隆应该再次请求它们。

如果该命令不可用,请使用简化的路径再试一次:

set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
© www.soinside.com 2019 - 2024. All rights reserved.