Changes between Version 25 and Version 26 of HowToGit
- Timestamp:
- 05/18/19 09:34:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v25 v26 14 14 * fork the GRASS GIS repository, and create feature branch(es) with the changes, and suggest your changes as pull requests. 15 15 16 First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`. 17 16 18 === Workflow for core developers === 17 19 18 First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`.19 20 20 21 ''- to be discussed which way -'' … … 86 87 87 88 # add your fork as another remote 88 git remote add fork https://github.com/< username>/grass.git89 git remote add fork https://github.com/<your_GH_account>/grass.git 89 90 90 91 # change the push URL for your fork to SSH if you have it set up 91 git remote set-url --push fork ssh://git@github.com/< username>/grass.git92 git remote set-url --push fork ssh://git@github.com/<your_GH_account>/grass.git 92 93 93 94 # all steps see above, core dev section (branch, edit, commit)