美文网首页
【Git】remote

【Git】remote

作者: 周宇盛 | 来源:发表于2019-03-13 12:25 被阅读0次

    展示remote地址: git remote -v
    展示remote名称: git remote
    设置remote: git remote add origin git@github.com:username/repository-name.git 这里origin是给remote设置的名称
    更改remote地址: git remote set-url origin git@github.com:username/repository-name.git [1]
    这里的地址用的是SSH格式,如果使用HTTPS格式的话,git push的时候会提示输入用户名和密码[2]


    1. https://help.github.com/en/articles/changing-a-remotes-url

    2. https://stackoverflow.com/questions/6565357/git-push-requires-username-and-password

    相关文章

      网友评论

          本文标题:【Git】remote

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