Panel tshift 4853 by dalejung · Pull Request #4864 · pandas-dev/pandas (original) (raw)
You'll want to squash your commits down to a single commit before it's merged.
git fetch upstream
git checkout panel-tshift-4853
git rebase -i upstream/master
This should open your editor (-i
stands for interactive) and you can follow the instructions there to squash or fixup your commits to just one. Looking at your commits, you could probably squash the second into the first and then choose fixup for the other two.
Once that's done you can use git push origin panel-tshift-4853 -f
to push to the branch in this PR. Be careful with the -f
option though. This will mess things up if others are working off your branch.