http://192.168.0.222:8080/xxx/xx.git(第一次输入账号密码,如果遇到以下问题: fatal: Authentication failed, 就是凭证失败了,如报错看:控制面板\所有控制面板项\凭据管理器 里面是否有凭据没有修改,是否保存了之前的用户名和密码)
使用git push,如果出现下面报错:
fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add <name> <url> and then push using the remote name git push <name>解决方法:在git仓库创建新的仓库然后复制仓库URL链接: git remote add origin http://192.168.0.222:8080/lixianlin/lxl.git git push -u origin master
执行git clone报错remote: invalid credentials fatal: Authentication failed for ‘http://192.168.xxxx/xxx/xx.git/’ 解决方法: git credential-manager uninstall git credential-manager install 这样一般会解决。