Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.04 KB

File metadata and controls

70 lines (47 loc) · 1.04 KB

Repository for the BowlingKata in JS

  • Your name:
  • Your email:
  • Your GitHub username:
  • Your NIU:

This is a base repository to do the UncleBob Bowling Game Kata ( http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata ) in Javascript.

Please, follow the instructions at https://david-rodenas.com/BowlingGameKata or, in the case that you are from the university, follow the instructions on your course board.

Setup

Setup:

$ yarn

Run:

$ yarn test

Commits

Commits must follow the same exact names that the Kata requires. Commits must be in the right order. There cannot be extra commits.

Some useful git commands

Tips from:

Change the last commit:

$ git commit --amend -m "New commit name"

Back to the previous commit:

$ git reset --hard HEAD~1

Back to any commit:

$ git reset --hard <commit-hash>

Push changes in history:

$ git push --force-with-lease

List lost commits:

$ git reflog