git查看、添加、删除远程地址
远程
添加
查看
删除
git
地址
多个
url
githubcom
zhufenghua1998
编程技术
发布日期
2022-10-22
更新日期
2022-10-22
阅读次数 64
文章字数 385
查看所有的远程
git remote -v
删除origin
git remote rm origin
添加origin
git remote add origin git@github.com:zhufenghua1998/bp3.git
fetch远程分支
git fetch
把本地分支和远程分支关联起来
git branch --set-upstream-to=origin/remote_name local_name
注意:多个 origin ,需要多次推送,如果希望一个 fetch ,多个 push【一次】,则在添加一个 origin 后,设置多个 url,例如:
git remote set-url --add origin git@github.com:zhufenghua1998/bp3.git
如果不再需要多个 url ,则
git remote set-url --delete origin git@github.com:zhufenghua1998/bp3.git
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-144.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
远程
添加
查看
删除
git
地址
多个
url
githubcom
zhufenghua1998
发表评论
相关推荐