zoukankan      html  css  js  c++  java
  • Keep your fork synced

    1  clone 自己的git仓   

    git clone https://github.com/YOUR-USERNAME/Spoon-Knife

    2  查看自己的本地仓对应的远程仓

    git remote -v

    3  增加新的远程仓

    git remote add upstream https://github.com/octocat/Spoon-Knife.git

    4  

    git remote -v

    5  同步远程仓数据

    git fetch upstream

    6  切换到本地仓的master分支

    git checkout master

    7  将远程仓的master分支merge到本地的master分支

    git merge upstream/master

  • 相关阅读:
    31
    30
    29
    28
    27
    26
    25
    23
    cesium 基础
    操作SDO_GEOMETRY字段
  • 原文地址:https://www.cnblogs.com/Eastsong/p/4989674.html
Copyright © 2011-2022 走看看