Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 667 Bytes

File metadata and controls

22 lines (20 loc) · 667 Bytes

Starting a Story

Definition of ready

  • User story description has been defined
  • Business value has been defined
  • Story has acceptance criteria in Given When Then format
  • Designs are attached to story
  • There are no dependent stories
  • Story has been broken down into separate tasks if appropriate

Starting work on the story

  1. Make the team aware you're working on the story
  2. Pull from main before creating a branch
    git checkout main
    git pull
    
  3. Create a branch with a short description of the story, e.g.
    git checkout -b adding-login-page
  4. Start working!