Adventure Game
Description here
How to run the game
From your command line, navigate to the right folder and run ruby game.rb
.
cd game/
ruby game.rb
How to Contribute
- Fork this repository.
- Clone your forked repository down to the computer you intend to use to work on it.
- From that computer, make sure you
git remote add upstream git@github.com/berkompasacademy/game.git
. This will allow you to pull in updates from other people.
Now we get to the fun stuff:
- Make a new branch on your local computer.
- Make some changes!
- Commit your changes.
git add .
git commit -am "Your message here"
- Push to github.
git push origin <your-branch-name>
. - Go to the Github page for your fork. There should be a button there offering to open a pull request.