$ git checkout dev
$ git checkout -b feature
#*Consider pull request from the feature branch to be reviewed first ( pull requests can be made from the github interface on the web)
#Make sure you are on the dev branch
$ git merge feature
# Make sure you are on the dev branch.
$ git branch --set-upstream-to=origin/dev
# Make sure you are on the dev branch.
$ git pull origin dev
#Master will be ONLY for LIVE READY VERSIONS
$ git checkout master
# Make sure you are on the master branch when you do the merge with the following command
$ git merge --no-ff dev