Changes between Version 37 and Version 38 of HowToGit


Ignore:
Timestamp:
May 24, 2019, 1:13:23 AM (5 years ago)
Author:
martinl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v37 v38  
    2727One time only:
    2828{{{
    29 # ("origin" points to your fork repo)
     29# "origin" points to your fork repo - IMPORTANT
    3030git clone git@github.com:your_GH_account/grass.git
    3131
     32# add "upstream" remote
    3233cd grass/
    3334git remote add upstream git@github.com:OSGeo/grass.git
     35
    3436git remote -v
     37# you should see something like
     38origin    git@github.com:your_GH_account/grass.git (fetch)
     39origin    git@github.com:your_GH_account/grass.git (push)
     40upstream  git@github.com:OSGeo/grass.git (fetch)
     41upstream  git@github.com:OSGeo/grass.git (push)
     42}}}
    3543
    36 ~~# Or: ("origin" points to original repo: can be dangerous!)~~
    37 ~~git clone git@github.com:OSGeo/grass.git~~
    38 ~~git remote add your_GH_account git@github.com:your_GH_account/grass.git~~
    39 }}}
    4044
    4145Working with git: