[python-committers] Remove accidentally created branch on cpython repo
Hey all, So by my own mistake in the GitHub UI, I was looking at a previous commit for one of my PRs (https://github.com/python/cpython/pull/19282) and misclicked the "revert commit" button instead of "view details". Fortunately, this only created a separate branch in the cpython repository instead of actually reverting anything (see https://github.com/python/cpython/tree/revert-19282-bpo40115-test_asyncio-run_in_executor_cancel), but I'm unsure of the best way to remove the branch or if I'm even able to. Sorry about the mixup, I'm rather new to the core developer role and this is my first time running into anything like this. Regards, Kyle Stanley ___ python-committers mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-committers.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/XVW5GXWJGBH2EITJ3RNFA4IPYLCPG4B2/ Code of Conduct: https://www.python.org/psf/codeofconduct/
[python-committers] Re: Remove accidentally created branch on cpython repo
On May 21, 2020, at 03:44, Kyle Stanley wrote: > So by my own mistake in the GitHub UI, I was looking at a previous commit for > one of my PRs (https://github.com/python/cpython/pull/19282) and misclicked > the "revert commit" button instead of "view details". Fortunately, this only > created a separate branch in the cpython repository instead of actually > reverting anything (see > https://github.com/python/cpython/tree/revert-19282-bpo40115-test_asyncio-run_in_executor_cancel), > but I'm unsure of the best way to remove the branch or if I'm even able to. You can view the active branches here: https://github.com/python/cpython/branches/active If you have permission to delete it, there will be a trashcan icon to the right of the branch. I made it go away. > Sorry about the mixup, I'm rather new to the core developer role and this is > my first time running into anything like this. No problem! We all have learning events along the way. Keep hacking! -- Ned Deily [email protected] -- [] ___ python-committers mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-committers.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/HJIQD7QP3HXHADOEVGZR3LFHB3KOKID2/ Code of Conduct: https://www.python.org/psf/codeofconduct/
[python-committers] Re: Remove accidentally created branch on cpython repo
Thanks for cleaning it up and for the info, Ned. :-) On Thu, May 21, 2020 at 3:50 AM Ned Deily wrote: > > On May 21, 2020, at 03:44, Kyle Stanley wrote: > > So by my own mistake in the GitHub UI, I was looking at a previous > commit for one of my PRs (https://github.com/python/cpython/pull/19282) > and misclicked the "revert commit" button instead of "view details". > Fortunately, this only created a separate branch in the cpython repository > instead of actually reverting anything (see > https://github.com/python/cpython/tree/revert-19282-bpo40115-test_asyncio-run_in_executor_cancel), > but I'm unsure of the best way to remove the branch or if I'm even able to. > > You can view the active branches here: > > https://github.com/python/cpython/branches/active > > If you have permission to delete it, there will be a trashcan icon to the > right of the branch. > > I made it go away. > > > Sorry about the mixup, I'm rather new to the core developer role and > this is my first time running into anything like this. > > No problem! We all have learning events along the way. Keep hacking! > > -- > Ned Deily > [email protected] -- [] > > ___ python-committers mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-committers.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/TMI7HP7EEEQ4TQZIU6VCRLQEAJLORGTW/ Code of Conduct: https://www.python.org/psf/codeofconduct/
