Changes between Version 17 and Version 18 of HowToGit
- Timestamp:
- 05/18/19 08:30:28 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v17 v18 16 16 === Workflow for core developers === 17 17 18 ~~Here no fork needed but create feature branch(es) on master (to be discussed; GDAL always forks)~~19 20 18 First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`. 21 19 22 One time only (both https and ssh key ways are shown): 20 ''- to be discussed which way -'' 21 22 One time only: 23 23 {{{ 24 24 # EITHER ("origin" points to original repo) 25 ## a) https way26 git clone https://github.com/OSGeo/grass27 git remote add your_GH_account https://github.com/your_GH_account/grass.git28 29 ## b) ssh way30 25 git clone git@github.com:OSGeo/grass.git 31 26 git remote add your_GH_account git@github.com:your_GH_account/grass.git 32 27 33 34 28 # OR ("origin" points to your fork repo) 35 ## a) https way36 git clone https://github.com/your_GH_account/grass37 git remote add upstream https://github.com/OSGeo/grass.git38 39 ## b) ssh way40 29 git clone git@github.com:your_GH_account/grass.git 41 30 git remote add upstream https://github.com/OSGeo/grass.git