Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.27 KB

File metadata and controls

36 lines (28 loc) · 1.27 KB

Sprint 0 : Step 2: Create the Github Project

Now we need to setup our project on Github.

I go to our github page: https://github.com/appdevdesigns

  1. Click on the Repositories tab
  2. Click on the New button GitHub Repo
  3. Fill out the new Repo info: DO NOT INITIALIZE the project GitHub Entry
  4. Now manually initialize and push up the project's #master branch:
    # 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 #develop branch 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.


< sprint 0 step 3 : Setup Travis CI >