kelseyywang / HazMap

React Native app for aggregating localized public health concerns

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

health-hack

Developer Guide

Working on a Quick Feature

Always pull from master to get the latest files when you're working on something new.

git pull origin master

When you're doing working on stuff and ready to share your code.

git add -A
git commit -m "Write some message"
git push origin master  # If you get an error here try pulling again

Working on a Long/Independent Feature

Always pull from master to get the latest files when you're working on something new.

git checkout master
git pull origin master

Create a new branch called yourname/your_feature.

git checkout -b ken/new_feature

When you're doing working on stuff and ready to share your code.

git add -A
git commit -m "Write some message"
git push origin ken/new_feature  # If you get an error here try pulling again
git checkout master  # Go back to master branch

About

React Native app for aggregating localized public health concerns


Languages

Language:JavaScript 52.5%Language:Ruby 47.2%Language:HTML 0.4%