Git修改远程仓库地址


Git修改远程仓库地址

查询远程地址:git remote -v

方式一:修改

git remote set-url origin [url]

方式二:先删后加

git remote rm origin
git remote add origin [url]

方式三:直接修改config(.git/config)文件

[remote "origin"]
    url = https://github.com/shipengzhen/shipengzhen.github.io.git
    fetch = +refs/heads/*:refs/remotes/origin/*

文章作者: shipengzhen
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 shipengzhen !
 上一篇
Postman汉化 Postman汉化
一、Postman汉化版 码云地址:https://gitee.com/hlmd/PostmanCn/ github地址:https://github.com/hlmd/Postman-cn 二、介绍最新中文版本:8.0.7更新时间:
2021-03-09
下一篇 
CentOS Docker 安装 CentOS Docker 安装
CentOS Docker 安装Docker 支持以下的 64 位 CentOS 版本: CentOS 7 CentOS 8 更高版本… 使用官方安装脚本自动安装安装命令如下: curl -fsSL https://get.docke
2021-02-22
  目录