Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用与此命令类似的命令从 git bash 克隆存储库。
git clone ssh://server.net/team/git/gui.git
然后它询问用户名和密码。我输入了错误的用户名和密码。后来我尝试使用相同的命令克隆该存储库。但它不要求用户名。它只是询问用户名@server.net 的密码(这里的用户名是我第一次输入的用户名)。所以我不能克隆那个回购。如何删除该用户(用户名@server.net)? 谢谢。
clone您可以在URL中提供用户:
clone
ssh://[user@]host.xz[:port]/path/to/repo.git/
尝试像这样克隆:
git clone ssh://correct_username@server.net/team/git/gui.git/