目录
设置Git 全局设置:
创建一个远程仓库
创建本地仓库
连接远程仓库
查看远程仓库origin的关联信息
查看所有远程仓库
切换远程仓库
设置Git 全局设置:
git config --global user.name "your name" git config --global user.email "your email@163.com"
创建一个远程仓库
在远程的github、gitee公有仓库平台或是自己的私有git服务里创建一个仓库,如swy-stock
以gitee为例:创建你的第一个仓库 - Gitee.com
创建本地仓库
创建 git 仓库:
mkdir swy-stock cd swy-stock git init touch README.md git add README.md git commit -m "first commit"
已有仓库?文章来源:https://www.toymoban.com/news/detail-821569.html
cd swy-stock
连接远程仓库
git remote add origin https://gitee.com/swy/swy-stock.git git push -u origin "master"
查看远程仓库origin的关联信息
git remote show origin
* remote origin
Fetch URL: https://gitee.com/swy/swy-stock.git
Push URL: https://gitee.com/swy/swy-stock.git
HEAD branch: master
Remote branches:
master tracked
查看所有远程仓库
git remote -v
origin https://gitee.com/swy/swy-stock.git (fetch)
origin https://gitee.com/swy/swy-stock.git (push)
origin2 https://github.com/swy/swy-stock.git (fetch)
origin2 https://github.com/swy/swy-stock.git (push)
切换远程仓库
比如切换到origin2文章来源地址https://www.toymoban.com/news/detail-821569.html
git fetch origin2
到了这里,关于本地仓库如何与远程仓库进行关联的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!