Skip to content

Instantly share code, notes, and snippets.

View jk1dd's full-sized avatar
💭
workin

Jonathan Kidd jk1dd

💭
workin
  • Denver, CO, USA
View GitHub Profile
@erinnachen
erinnachen / git-workflow.markdown
Last active December 18, 2018 16:48
My Git Workflow

Project workflow:

  1. Load/Reload waffle.
  2. Choose a card from the backlog in waffle. If we're working separately, it's best to move that card that you've chosen into ready and perhaps assign it to yourself as well.
  3. git checkout master
  4. git pull origin master
  5. run rspec
  6. Checkout a new branch and tag it with #issue_number
  7. Write the feature test associated with your waffle card.
  8. Run rspec, and make sure that there are no errors that blow up the stack (missing ends, forgetting capitalization, etc.)
  9. commit your feature test