forked from ruuda/hoff
-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
When hoff fails to rebase a PR, it'll leave a comment with the rebase command one should use locally for reproducing the rebase and solving the conflicts like this:
git rebase --interactive --autosquash origin/master my-feature-branch
However, if you're just blindly following the instructions, you might not actually reproduce the issue hoff encountered because your local view of origin/master might still be outdated.
For convenience, we could just include a git fetch in that line like this:
git fetch && git rebase --interactive --autosquash origin/master my-feature-branch
ruuda and rudymatelarudymatela
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers