/rails-hello-app

https://www.railstutorial.org/book/

Primary LanguageRuby

Ruby on Rails Tutorial

"hello, world!"

git workflow for working on a feature

  1. Create a topic branch
git checkout -b topic-branch
  1. Make changes in that branch

  2. Commit and push changes to the topic branch

git commit -a -m "Do the thing to be done."
  1. Switch back to the master branch
git checkout master
  1. Merge topic branch into master mranch
git merge topic-branch
  1. Delete topic branch
git branch -d topic-branch

This is the first application for the Ruby on Rails Tutorial by Michael Hartl. Hello, world!