This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
Create account on github.com
git clone your-forked-repo-url
git remote -v
# If remote upstream doesn't exist create it
git remote add upstream https://github.com/Hack-Weekly/fire-kangaroo-sticky-notes
git checkout -b your-feature-branch
# keep commiting to newly create branch
git add .
git commit -m "Your commit message"
...
git fetch upstream
git checkout your-feature-branch
git rebase upstream/main
# in case of conflicts, solve them and continue
git rebase --continue
# share your-feature-branch by pushing it to your fork on github
git push origin your-feature-branch --force
- Navigate to your forked repository
- In Code tab switch active branch to your-feature-branch you just pushed
- Click on Create & Compare button to create Pull Request
- Fill in the details about changes you performed and if possible link your trello task to it.
- Keep your-feature-branch intact until the PR is approved and merged
- While Pull Reuqest is still pending, be careful about creating additional PRs for same files, otherwise there will be merge conflicts
- Update your local main branch with upstream changes
git fetch upstream
git checkout main
git rebase upstream/main
# in case of conflicts, solve them and continue
git rebase --continue
# Share these also to your main on github repo
git push origin main --force