Changes between Version 25 and Version 26 of HowToGit


Ignore:
Timestamp:
May 18, 2019, 9:34:00 AM (5 years ago)
Author:
martinl
Comment:

username -> your_GH_account

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v25 v26  
    1414 * fork the GRASS GIS repository, and create feature branch(es) with the changes, and suggest your changes as pull requests.
    1515
     16First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`.
     17
    1618=== Workflow for core developers ===
    1719
    18 First [https://github.com/OSGeo/grass fork the GRASS GIS repo] in the !GitHub UI to `your_GH_account`.
    1920
    2021''- to be discussed which way -''
     
    8687
    8788# add your fork as another remote
    88 git remote add fork https://github.com/<username>/grass.git
     89git remote add fork https://github.com/<your_GH_account>/grass.git
    8990
    9091# 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.git
     92git remote set-url --push fork ssh://git@github.com/<your_GH_account>/grass.git
    9293
    9394# all steps see above, core dev section (branch, edit, commit)