# 先移除现有的 origin
git remote remove origin

# 添加带有用户名的地址
git remote add origin https://该仓库拥有者@github.com/仓库路径.git

# 再次尝试推送
git push -u origin main