You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've merged a lot of big features into main over the last few days.
Right now, a lot of new Pull Requests are accidentally deleting these new features because they are being created from outdated branches. Moving forward, we won't be able to merge PRs if they revert other people's code!
Before you write any code or open a PR, please make sure your local project is fully synced!
Just run these commands in your terminal to get up to date: git remote add upstream https://github.com/jpdevhub/FreshScanAi.git (if you haven't already) git fetch upstream git checkout main git reset --hard upstream/main git push origin main --force
Then, create a fresh branch for your new feature (git checkout -b feature/name).
If you already have a PR open and need to update it, run git pull upstream main and be very careful not to delete other people's code when resolving merge conflicts! Thanks for all the hard work!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hey everyone!
We've merged a lot of big features into main over the last few days.
Right now, a lot of new Pull Requests are accidentally deleting these new features because they are being created from outdated branches. Moving forward, we won't be able to merge PRs if they revert other people's code!
Before you write any code or open a PR, please make sure your local project is fully synced!
Just run these commands in your terminal to get up to date: git remote add upstream https://github.com/jpdevhub/FreshScanAi.git (if you haven't already) git fetch upstream git checkout main git reset --hard upstream/main git push origin main --force
Then, create a fresh branch for your new feature (git checkout -b feature/name).
If you already have a PR open and need to update it, run git pull upstream main and be very careful not to delete other people's code when resolving merge conflicts! Thanks for all the hard work!
Beta Was this translation helpful? Give feedback.
All reactions