Changes between Version 41 and Version 42 of HowToGit


Ignore:
Timestamp:
May 24, 2019, 4:31:17 AM (5 years ago)
Author:
martinl
Comment:

grass addons workflow

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v41 v42  
    118118=== Workflow for grass-addons repository ===
    119119
    120 - to be discussed  -
     120 - to be discussed  -
     121
     122One time only:
     123{{{
     124# # "origin" points to your grass-addons repo - no fork needed
     125git clone git@github.com:OSGeo/grass-addons.git
     126}}}
     127
     128Work with git:
     129{{{
     130# <make local source code changes>
     131vim ...
     132
     133# list local changes
     134git status
     135git add file1.c file2.py ...
     136git commit -m 'my change with reasonable explanation...'
     137
     138# assuming that "origin" points to OSGeo/grass-addons
     139git fetch origin
     140git rebase origin/master
     141
     142# push feature branch to origin, i.e. directly to OSGeo/grass-addons repo
     143git push origin
     144}}}
    121145
    122146== Switching between branches ==