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
{{ message }}
This repository has been archived by the owner on May 10, 2022. It is now read-only.
git checkout landing_pad
git pull
git fetch upstream
git merge upstream/master
# Resolve conflicts, etc.
bundle
# NOTE: It's important to use `bundle exec` here, as your gemset is now polluted with# NOTE: mixed versions of dependencies (e.g. ActiveRecord)!
bundle exec rake test# Stage and commit things here.
git push
Phase 2: Merging Upstream Changes
git checkout master
git pull
git merge landing_pad
# Resolve conflicts, etc.
bundle clean --force
rake test# Stage and commit things here.
git push