- Clone Repo
cd v8-bears-team-02/client
- install dependencies
npm install
- run the server
npm start
- Clone Repo
cd v8-bears-team-02/server
- install dependencies
npm install
- run the server
npm start
- Clone the repo
git clone {address}
- Checkout the development branch
git checkout dev
- Create your own branch
git checkout -b {new feature branch name}
- Make your changes to the files
- Add and commit changes to your branch
- push changes to your branch
git push origin {branch name}
- Create a pull request from your branch to the development branch
- Repeat
Note: Remember to update the dev branch before creating your own branch. git checkout dev
,then git pull