赞
踩
git remote set-url origin 新的仓库地址
分两步操作:
git config --global user.name "Your New Name"
git config --global credential.helper store
然后执行一次 Git 操作,Git 会提示输入新的用户名和密码,这时候输入即可更新密码。
git remote set-url origin https://username:password@new.gitlab.com/your-repo.git
需要注意的是,虽然这种方法可以直接在 URL 中包含密码,但不推荐这样做,因为密码会明文出现在命令中,存在安全风险。最好的做法是使用 Git 凭据存储区(credential storage)来管理用户名和密码,或者使用 SSH 密钥进行认证。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。