-
Notifications
You must be signed in to change notification settings - Fork 19
Workflow for Developers
crawfordsm edited this page Apr 24, 2013
·
3 revisions
We have adopted the workflow from developers from astropy developer workflow.
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
To update your code from the original repository run:
git fetch upstream
Please follow the workflow on astropy developer workflow