Now we need to setup our project on Github.
I go to our github page: https://github.com/appdevdesigns
- Click on the
Repositoriestab - Click on the
Newbutton
- Fill out the new Repo info: DO NOT INITIALIZE the project

- Now manually initialize and push up the project's
#masterbranch:# assuming you are in your sails folder: $ cd node_modules/opstool-process-approval $ git init $ git add . $ git commit -m "initial commit" $ git remote add origin https://github.com/appdevdesigns/opstool-process-approval.git $ git push -u origin master
- Now create a
#developbranch for our team:$ git checkout -b develop $ git push -u origin develop
Now at this point this project is now hosted on github for our developers to access, and we have our standard #master and #develop branches.
You can read here about how we implement our git branching strategy.