On Thu, Apr 05, 2018 at 10:37:29AM -0700, Ethan Furman <[email protected]> wrote: > Okay, tried again, still seeing problem. > > ethan@code:~/source/git-python/cpython$ git fetch origin 3.7:3.7 > fatal: Couldn't find remote ref 3.7 > > ethan@code:~/source/git-python/cpython$ git fetch upstream 3.7:3.7 > From github.com:python/cpython > * [new branch] 3.7 -> 3.7 > > ethan@code:~/source/git-python/cpython$ git branch > 3.7 > bpo-29237 > * bpo-33217-3.7 > enum_ignore > master > > ethan@code:~/source/git-python/cpython$ make patchcheck
The script works with both `upstream` if it can find such remote or `origin` otherwise: https://github.com/python/cpython/blob/master/Tools/scripts/patchcheck.py#L66 After you fetched `upstream/3.7` it started to work. > -- > ~Ethan~ Oleg. -- Oleg Broytman http://phdru.name/ [email protected] Programmers don't die, they just GOSUB without RETURN. _______________________________________________ core-workflow mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mm3/mailman3/lists/core-workflow.python.org/ This list is governed by the PSF Code of Conduct: https://www.python.org/psf/codeofconduct
