You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lucia Reynoso edited this page Aug 30, 2019
·
3 revisions
Setup
To get a local development instance running on your computer:
Clone this repo
Using Git and Github for development
feature_development_loop:
# Create a new uniquely named private development branch
git fetch
git checkout master
git checkout -b <user>/<new_unique_branch_name> origin/master
# ... Do your work here. ...
# ... git add / rm any files, etc ...
git commit
git push
# Click to create pull request
# After the pull request is approved and merged into master via github,
# delete its branch from github, and...
go to feature_development_loop