Recently, when performing operations like git clone and pull, it asks for the git password
❯ git clone git@xxx:xxx/xxx.git
Cloning into 'xxxx'...
git@xxx.xxx.xxx.xxx's password:
But I have already uploaded the SSH public key, and it works fine with GitHub and others.
After struggling for a long time and still not knowing what this password is, I finally gave up and switched to the HTTP method recommended by others. After setting the git link, I can also use git clone, push, and pull normally.
git remote add origin git@xxxx
git remote set-url origin http://xxx.com/xxx.git