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
git fetch
gh pr checkout $PR_ID
git rebase origin/master
# Deal with conflicts
git push --force
OR
git checkout master && git pull
git cherry-pick $COMMIT_ID # get this from the PR
# Fix conflicts
git push
# Go back to PR and manually close it using the commit on master
OR (when the branch lives outside of the getsolus org)
git checkout master && git pull
gh pr checkout $PR_ID
git log # get the commit ID
git checkout master
git cherry-pick $COMMIT_ID
# Deal with conflicts
git push
The text was updated successfully, but these errors were encountered:
OR
OR (when the branch lives outside of the getsolus org)
The text was updated successfully, but these errors were encountered: