如何在Git中设置远程仓库别名?代码示例

2024年04月07日 建站教程

添加 origin 远程仓库:

$ git remote add origin https://github.com/user/repo.git

显示所有远程仓库信息:

$ git remote -v
origin  https://github.com/user/repo.git (fetch)
origin  https://github.com/user/repo.git (push)

重命名 origin 为 upstream:

$ git remote rename origin upstream

删除 upstream 远程仓库:

$ git remote remove upstream

本文链接:http://so.lmcjl.com/news/1404/

展开阅读全文
相关内容