Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 484 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 484 Bytes

text-adventure

Node version 18.15.0 used

How to run this project on your machine:
git clone https://github.com/squal1/text-adventure
cd text-adventure
npm i

To start server:
node server.js

Making a new branch and switch to it: git checkout -b your_branch_name

Commit all your changes on a branch: git commit -a -m 'some message'

Merge your branch to main: git checkout master git merge hotfix

git pull origin main before you start working on the branch