解决宝塔could not read Username for ‘https://gitee.com‘: No such device or address“报错

Author: 陌小雨Date: 2023-07-25View: 125

用宝塔添加gitee私有仓库,部署webhook时,报错 could not read Username for 'https://gitee.com': No such device or address 的解决办法

  • 远程地址的时候使用ssh连接

如果你添加的是https地址,那么可以通过下面命令来修改:

git remote set-url origin 新地址
  • 在服务器手动连接一次gitee.com
//分清楚用那个权限
//root
ssh -T git@gitee.com
sudo -u root ssh -T git@gitee.com

//www
sudo -u www ssh -T git@gitee.com

根据提示输入yes

可能用到的命令

查看用户名 :
git config user.name
查看密码:
git config user.password
查看邮箱:
git config user.email
查看配置信息: 
git config --list
修改用户名
git config --global user.name "xxxx(新的用户名)"
修改密码
git config --global user.password "xxxx(新的密码)"
修改邮箱
git config --global user.email "xxxx@xxx.com(新的邮箱)"

参考文档:

参考1

参考2

参考3

返回列表页>