Changes between Version 19 and Version 20 of HowToGit
- Timestamp:
- 05/18/19 08:35:50 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v19 v20 22 22 One time only: 23 23 {{{ 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) 29 25 git clone git@github.com:your_GH_account/grass.git 30 26 git 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 31 32 32 33 # then