Making it easy and affordable to eat better food. Coming soon!
Visit us at http://projectmule.herokuapp.com/
Tracker is at https://www.pivotaltracker.com/s/projects/929294
Clone repo
git clone [email protected]:kishkaru/project-mule.git
Basic workflow:
git pull origin master
git branch myBranch
git checkout myBranch
.
.
.
git add newFile1 newFile2 newFile3
git commit -m "new files for my branch"
git push origin myBranch
Merging into master:
- Create pull request for your branch.
- Wait for three +1's.
- Merge branch into Master.
- Delete branch on GitHub.
- Delete branch on local machine:
git branch -D myBranch
Run unit tests (TDD)
rake spec
Run integration tests (BDD)
rake cucumber