-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: migrate to NextJS app router #2580
feat: migrate to NextJS app router #2580
Conversation
hello, can anybody suggest how to solve those conflicts? I am checking the branch and it is up to date with master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Outdated Fork
hello, can anybody suggest how to solve those conflicts? I am checking the branch and it is up to date with master
Your fork/branch is evidently not up to date with master
; otherwise, there wouldn't be conflicts.
You seem to lack basic knowledge of how Git and GitHub work, which makes it hard for you to contribute to open-source projects. It would be best if you improved on that.
Sync Remote
First, you must synchronize your fork — you can do this even using the UI.
Update Local
From there, you can:
cd you/local/repo
# fetch updates from your synchronized repo/fork
git pull origin master
# checkout to your feature branch
git checkout feature/app-router-nextjs
# apply new changes from master — requires resolving the conflicts
git merge master
# push the updated branch to your remote
git push origin feature/app-router-nextjs
Not enough?
If even that doesn't sound straightforward, you can re-do everything:
- Delete your local
feature
branch - Start a new one from [your updated]
master
- Re-apply your changes, push, and open a new PR
Final Notes
I recommend studying GIT.
We may not be able to help you with that.
yes, seems like that is a gap in my knowledge, thanks for pointing it out |
Co-authored-by: Peter Smith <peter@blueoceancomputing.co.uk>
Thank you for you contribute @YaTut1901 - we appreciate it! |
Thank you for your advices! BTW, is there anything other in scope of your projects I can help with? |
You're more than welcome! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
create fuels
template #2517