Changing a remote's URL

本文介绍如何使用git remote set-url命令来更改Git项目的远程仓库URL,包括从SSH更改为HTTPS的过程,并验证更改后的URL。

参考: https://help.github.com/articles/changing-a-remote-s-url/
The git remote set-url command changes an existing remote repository URL.

The git remote set-url command takes two arguments:
An existing remote name. For example, origin or upstream are two common choices.
A new URL for the remote.

List your existing remotes in order to get the name of the remote you want to change.

git remote -v
origin git@github.com:USERNAME/REPOSITORY.git (fetch)
origin git@github.com:USERNAME/REPOSITORY.git (push)
Change your remote's URL from SSH to HTTPS with the git remote set-url command.

git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
Verify that the remote URL has changed.

git remote -v
# Verify new remote URL
origin https://github.com/USERNAME/OTHERREPOSITORY.git (fetch)
origin https://github.com/USERNAME/OTHERREPOSITORY.git (push)

转载于:https://www.cnblogs.com/qike/p/5461649.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值