Bootstrap

Git本地项目配置多个远程仓库

目录

Git一个项目多个远程仓库的使用

本地项目配置多个远程仓库

现在项目中有一个需求就是一个项目需要推送到多个远程仓库。

  1. 首先在工作目录打开git-bash
  2. 然后输入git remote -v查看现有的远程仓库

    结果

  3. 接着我现在需要在oschina的库(大家根据实际需求来)上建这样一个项目并推送到远端

  4. http://git.oschina.net 打开oschina的库,新建一个项目,拿到项目地址
    https://git.oschina.net/wudajushi/fastjson-clone.git

  5. 接着git-bash中敲打

    git remote add oschina https://git.oschina.net/wudajushi/fastjson-clone.git

;