1. 首页
  2. Git

Git 操作远程仓库命令

git remote

操作远程库。

列出已经存在的远程仓库

git remote

列出远程仓库的详细信息,在别名后面列出URL地址

git remote -v
git remote --verbose

添加远程仓库

git remote add <远程仓库的别名> <远程仓库的URL地址>

修改远程仓库的别名

git remote rename <原远程仓库的别名> <新的别名>

删除指定名称的远程仓库

git remote remove <远程仓库的别名>

修改远程仓库的 URL 地址

git remote set-url <远程仓库的别名> <新的远程仓库URL地址>

文章收集整理于网络,请勿商用,仅供个人学习使用,如有侵权,请联系作者删除,如若转载,请注明出处:http://www.cxyroad.com/16909.html

QR code