Changes between Version 17 and Version 18 of HowToGit


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

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v17 v18  
    1616=== Workflow for core developers ===
    1717
    18 ~~Here no fork needed but create feature branch(es) on master (to be discussed; GDAL always forks)~~
    19 
    2018First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`.
    2119
    22 One time only (both https and ssh key ways are shown):
     20''- to be discussed which way -''
     21
     22One time only:
    2323{{{
    2424# EITHER ("origin" points to original repo)
    25 ## a) https way
    26 git clone https://github.com/OSGeo/grass
    27 git remote add your_GH_account https://github.com/your_GH_account/grass.git
    28 
    29 ## b) ssh way
    3025git clone git@github.com:OSGeo/grass.git
    3126git remote add your_GH_account git@github.com:your_GH_account/grass.git
    3227
    33 
    3428# OR ("origin" points to your fork repo)
    35 ## a) https way
    36 git clone https://github.com/your_GH_account/grass
    37 git remote add upstream https://github.com/OSGeo/grass.git
    38 
    39 ## b) ssh way
    4029git clone git@github.com:your_GH_account/grass.git
    4130git remote add upstream https://github.com/OSGeo/grass.git