美文网首页
git 仓库变更

git 仓库变更

作者: 何佳阳 | 来源:发表于2019-11-09 15:25 被阅读0次

    远端要做的操作:

    重命名远程仓库:  

    git remote rename [old-name] [new-name]

    查看当前的远程仓库

    git remote -v

    添加远程库: 

    要添加一个新的远程仓库,可以指定一个简单的名字,以便将来引用

    git remote add [shortname] [url]

    使用者要做的操作

    1.vim ~/.ssh/known_hosts

    #删除git.域名.net 这条

    2. 把cat ~/.ssh/id_rsa.pub添加到gitlab

    3:本地项目路径下执行

    git remote set-url origin 新的地址

    相关文章

      网友评论

          本文标题:git 仓库变更

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