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

目录

设置Git 全局设置:

创建一个远程仓库

创建本地仓库

连接远程仓库

查看远程仓库origin的关联信息

查看所有远程仓库

切换远程仓库


设置Git 全局设置:
git config --global user.name "your name"
git config --global user.email "your [email protected]"
创建一个远程仓库

在远程的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
* 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

git fetch origin2

你可能感兴趣的:(git,git,remote)