Changes between Version 24 and Version 25 of HowToGit


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

$feature_branch_name -> feature_branch_name

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v24 v25  
    4848
    4949# create new local branch (pick a new name for feature_branch_name)
    50 git checkout -b $feature_branch_name
     50git checkout -b feature_branch_name
    5151
    5252# list local changes
     
    5656
    5757# push feature branch to origin, i.e. your fork of the OSGeo/grass repo
    58 git push origin $feature_branch_name
     58git push origin feature_branch_name
    5959# create pull request in GitHub Web interface (the link is then shown in the terminal)
    6060
     
    6262git add .
    6363git commit -m 'my second change'
    64 git push origin $feature_branch_name
     64git push origin feature_branch_name
    6565# ..... will be added to existing pull request
    6666}}}