-
Notifications
You must be signed in to change notification settings - Fork 2
Getting started
Rudy Patel edited this page Jan 15, 2022
·
1 revision
So you just picked up a new ticket... where do you start?
-
Make sure to assign yourself to the ticket, and move it to the correct column on the Kanban board
-
Create a feature branch off of main
-
git checkout main: This ensures that you are starting on the main branch -
git fetch && git pull: This grabs the latest changes from main, in case you are out of date -
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)
-
-
Start working locally on your feature branch!
Once you are finished with your work, create a pull request following the PR 101 guide.