Skip to content

Getting started

Rudy Patel edited this page Jan 15, 2022 · 1 revision

So you just picked up a new ticket... where do you start?

  1. Make sure to assign yourself to the ticket, and move it to the correct column on the Kanban board

  2. Create a feature branch off of main

    1. git checkout main: This ensures that you are starting on the main branch
    2. git fetch && git pull: This grabs the latest changes from main, in case you are out of date
    3. git checkout -b BRANCH_NAME: This creates your feature branch off of master. Make sure you have your name and ticket number as your branch name (i.e. rudy_4)
  3. Start working locally on your feature branch!

Once you are finished with your work, create a pull request following the PR 101 guide.

Clone this wiki locally