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
There are new breaking changes on master so all UnitTests was failing on PRs.
In order to rebase your forks with master branch and running UnitTests against latest changes you can follow this steps.
Assuming we want to rebase #918 (fieteboerner:aggregate-subdocument). on your fork :
# Add upstream and fetch everything
git remote add upstream [email protected]:jenssegers/laravel-mongodb.git
git fetch upstream
# Checkout to patch branch
git checkout aggregate-subdocument
# Rebase with upstream's master
git rebase upstream/master
# Fast-Forward Changes
git push -ff
Then you can check your PR again for failing tests and fix them :)
The text was updated successfully, but these errors were encountered:
There are new breaking changes on master so all UnitTests was failing on PRs.
In order to rebase your forks with master branch and running UnitTests against latest changes you can follow this steps.
Assuming we want to rebase #918 (
fieteboerner:aggregate-subdocument
). on your fork :Then you can check your PR again for failing tests and fix them :)
The text was updated successfully, but these errors were encountered: