git连接远程仓库操作如下:
1. 初始化仓库
- git init
2. 本地仓库添加git仓库作为远程仓库,起名origin
- git remote add origin 远程仓库地址
3. 本地仓库与远程仓库关联
- git branch --set-upstream-to=origin/master master
如果报错,执行第四步文章来源地址https://www.toymoban.com/news/detail-650982.html
4. 重新设置并与远程仓库关联
- git pull origin master --allow-unrelated-histories
- git branch --set-upstream-to=origin/master master
- git push
文章来源:https://www.toymoban.com/news/detail-650982.html
到了这里,关于git连接远程仓库操作的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!