Skip to content

Latest commit

 

History

History
59 lines (51 loc) · 2.08 KB

workflow.md

File metadata and controls

59 lines (51 loc) · 2.08 KB

Workflow guide

Please follow this guideline during the project

What's happend?

Start working

Task done

  • git push origin branch your commits
    • feature/dev/personal -branch OR
    • master if ready for staging server
  • Drag card to DONE
  • Mark working hours (task) to card comments
  • Write new cards
    • After finishing a task you'll probably notice something that should/could be done next.. Now is a great time to write them down for other to see
    • Write notes on card comments can also be very useful. Perhaps copy them to a appropriate slack channel

Story done

  • Working hours
    • Count working hours from tasks
    • Mark time used on story to backlog
    • Mark "Done sprint" in backlog

End working

  • git push your commits
    • feature/dev/personal -branch if unfinished
    • master if ready for staging server
  • Mark your hours (all day) and what you've been working on
    • Everybody + personal tabs!

Sprint meeting

Check steps for sprint planning meeting

Git workflow

  • git pull origin master
  • git checkout -b branch-name-here
  • work work work work
  • git add -a /-p
  • git commit -m "Commit message"
  • Push
    • Ready for sharing to team:
      • share/save your feature/dev/personal -branch
      • git push ?? ??
    • Ready for staging:
      • git checkout master
      • git pull
      • git merge branch-name-here
      • git push ?? ??
    • Ready for production:
      • todo