当前位置:   article > 正文

本地仓库如何与远程仓库进行关联_本地关联远程仓库

本地关联远程仓库

目录

设置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"

已有仓库?

cd swy-stock
连接远程仓库
git remote add origin https://gitee.com/swy/swy-stock.git
git push -u origin "master"
查看远程仓库origin的关联信息
git remote show origin
  1. * remote origin
  2. Fetch URL: https://gitee.com/swy/swy-stock.git
  3. Push URL: https://gitee.com/swy/swy-stock.git
  4. HEAD branch: master
  5. Remote branches:
  6. master tracked
查看所有远程仓库
git remote -v
  1. origin https://gitee.com/swy/swy-stock.git (fetch)
  2. origin https://gitee.com/swy/swy-stock.git (push)
  3. origin2 https://github.com/swy/swy-stock.git (fetch)
  4. origin2 https://github.com/swy/swy-stock.git (push)
切换远程仓库

比如切换到origin2

git fetch origin2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/687132
推荐阅读
相关标签
  

闽ICP备14008679号