Changes between Version 19 and Version 20 of HowToGit


Ignore:
Timestamp:
May 18, 2019, 8:35:50 AM (5 years ago)
Author:
neteler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v19 v20  
    2222One time only:
    2323{{{
    24 # EITHER ("origin" points to original repo: can be dangerous!)
    25 git clone git@github.com:OSGeo/grass.git
    26 git remote add your_GH_account git@github.com:your_GH_account/grass.git
    27 
    28 # OR ("origin" points to your fork repo)
     24# ("origin" points to your fork repo)
    2925git clone git@github.com:your_GH_account/grass.git
    3026git remote add upstream https://github.com/OSGeo/grass.git
     27
     28~~# Or: ("origin" points to original repo: can be dangerous!)~~
     29~~git clone git@github.com:OSGeo/grass.git~~
     30~~git remote add your_GH_account git@github.com:your_GH_account/grass.git~~
     31
    3132
    3233# then