Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.42 KB

CONTRIBUTING.md

File metadata and controls

63 lines (44 loc) · 1.42 KB

Contributing to Stranger Things API 💥

Pull Request Guidelines

  1. Fork the repository Stranger Things API.
  2. Clone your new fork of the repository locally.
git clone https://github.com/<your-github-username>/stranger-things-api

  1. Set upstream command
git remote add upstream https://github.com/Mridul2820/stranger-things-api.git
  1. Navigate to the new project directory:
cd stranger-things-api

  1. Create Your own branch
git checkout -b <YOUR_BRANCH_NAME>
  1. Run it Locally
npm install
npm run dev
  1. Add yor changes
git add .
  1. Commit your changes with a meaningful message
git checkout -m "<Your Message>"
  1. Push your local commits to the remote repository
git push origin <YOUR_BRANCH_NAME>
  1. Create a Pull request
  2. Congratulations! You've made your first contribution! 🙌🏼