Skip to content

Workflow for Developers

crawfordsm edited this page Apr 24, 2013 · 3 revisions

We have adopted the workflow from developers from astropy developer workflow.

Overview

1. Create a fork. This is done by clicking on the fork button on the saltastro/pysalt page 2. Clone into your workspace

   git clone [email protected]:your-user-name/pysalt.git
   cd pysalt

3. Add the original repository upstream for keeping your version up to date.

    git remote add upstream [email protected]:saltastro/pysalt.git

Updating your code

To update your code from the original repository run:

    git fetch upstream

Adding Changes

Please follow the workflow on astropy developer workflow