Starting on the master branch:
git checkout -b store (creates new branch called store and switches to it)
Do some work . . .
git add . (stages work for commit, can be more specific than . --- could git add browser and this will add everything in your browser)
git commit -m ‘added store model!’ (commits work with message)
If mucho time has passed since you branched from master,