美文网首页
git修改远程仓库地址

git修改远程仓库地址

作者: Cursor_fei | 来源:发表于2017-11-20 14:05 被阅读14次

    GIT中修改远端URL的方法有三种:
    1.修改命令

    git remote set-url origin [url]
    

    2.先删后加

    git remote rm origin
    git remote add origin [url]
    

    3.直接修改config文件,工程目录下的.git文件夹下面的config文件

    [remote "origin"]
        url = git@10.0.63.12:yourProject.git
        fetch = +refs/heads/*:refs/remotes/origin/*
    

    相关文章

      网友评论

          本文标题:git修改远程仓库地址

          本文链接:https://www.haomeiwen.com/subject/tgdvvxtx.html