empowerhack / RecordOnTheGo

Portable health record for long term refugee health care
http://empowerhack.io/RecordOnTheGo/prototype/
MIT License
14 stars 1 forks source link

RecordOnTheGo

Portable health record for long term refugee health care

Gitflow - rules to follow when making changes to this project

The main 'branches' of this project are

Other, supporting branches that can be used are (and of which we can have multiple):

For a full guide to the model we're using to manage our code development, see 'A successful Git branching model'

Prototype site

empowerhack.github.io/RecordOnTheGo

There is a gh-pages prototype site. This is kept on a gh-pages branch. Never ake changes to this branch, it is only meant to host the pages site. To update the pages site:

## Make sure you're on the master branch and pull the latest changes:
git checkout master && git pull

## Checkout gh-pages branch and merge master in:
git checkout gh-pages && git merge master

## Push changes to gh-pages: 
git push origin gh-pages

## Switch back to master (or the branch you are working on) to ensure gh-pages doesn't get any local changes: 
git checkout master