Skip to content

Instantly share code, notes, and snippets.

@craigmcnamara
Last active May 17, 2018 21:29
Show Gist options
  • Save craigmcnamara/1d1a0a7895d5a0273b606894ec2edae3 to your computer and use it in GitHub Desktop.
Save craigmcnamara/1d1a0a7895d5a0273b606894ec2edae3 to your computer and use it in GitHub Desktop.
Feature Branch Workflow

Branch Workflow

  • Create your feature branch
    • git checkout -b my-new-feature
  • Add your changes
    • git add changed-file
  • Commit your changes
    • git commit
  • Push to the branch
    • git push origin my-new-feature

Deploying

  • bundle exec cap ENVIRONMENT_NAME deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment