We are going to create a pr. You need to know basic git and github commands to make a pr. If you don't know about it, check my Git and Github crash course
Click on fork in the top left corner of your screen. Clone the repo you have been redirected to
git clone url_redirected_to
If you use yarn then run
yarn install
and if you use npm delete yarn.lock and run
npm install
git checkout -b new-feature
If you are using yarn then run
yarn dev
and if you using npm run
npm run dev
You can use some accounts to test your features.
If you don't know about next auth follow this tutorial tutorial and get your credentials. And your .env.local file will look like this
GOOGLE_CLIENT_ID=client_id
GOOGLE_CLIENT_SECRET=client_secret
NEXTAUTH_URL=http://localhost:3000/
git add .
git commit -m "commit message (what you added)"
git push origin new-feature
In github if you refresh the page.
- You can see a button Compare and Pull request.
- Click on that button.
Now just add a title and description and create a pull request.
You have successfully created a pull request and I will review and merge it soon.