This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients skip.montanaro, vstinner
Date 2020-08-04.14:48:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1596552483.33.0.317582526763.issue41474@roundup.psfhosted.org>
In-reply-to
Content
> I don't know how to get rid of all those commit messages.

I suggest you to create a local branch per change, rather than using "master".

I consider that "origin" is git@github.com:python/cpython.git. Check your remotes with "git remote -v".

Example where "master" is your PR 21732.

git switch -c frameobject master
git switch master
git reset --hard origin/master  # revert your changes

Then fix your frameobject:

git switch master
git fetch && git merge --ff  # ensure that you are up to date
git switch frameobject
git rebase master

Check what you get:

git log master.. --pretty=oneline

You should see only one commit.

Close your PR and create a new one on the "frameobject" branch.
History
Date User Action Args
2020-08-04 14:48:03vstinnersetrecipients: + vstinner, skip.montanaro
2020-08-04 14:48:03vstinnersetmessageid: <1596552483.33.0.317582526763.issue41474@roundup.psfhosted.org>
2020-08-04 14:48:03vstinnerlinkissue41474 messages
2020-08-04 14:48:03vstinnercreate