Changes between Version 37 and Version 38 of HowToGit
- Timestamp:
- 05/24/19 01:13:23 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v37 v38 27 27 One time only: 28 28 {{{ 29 # ("origin" points to your fork repo)29 # "origin" points to your fork repo - IMPORTANT 30 30 git clone git@github.com:your_GH_account/grass.git 31 31 32 # add "upstream" remote 32 33 cd grass/ 33 34 git remote add upstream git@github.com:OSGeo/grass.git 35 34 36 git remote -v 37 # you should see something like 38 origin git@github.com:your_GH_account/grass.git (fetch) 39 origin git@github.com:your_GH_account/grass.git (push) 40 upstream git@github.com:OSGeo/grass.git (fetch) 41 upstream git@github.com:OSGeo/grass.git (push) 42 }}} 35 43 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 }}}40 44 41 45 Working with git: