On Thu, Sep 26, 2019 at 1:58 PM Ethan Furman <[email protected]> wrote: > Will there be a time delay between the final tagging and the deletion so any > who would like the repo in its final state can clone it at that point?
No need; you can try this with any currently closed branch like 3.3: `git checkout -B 3.3 refs/tags/3.3` will check out a local `3.3` branch at the tag (resetting the `3.3` local branch if it already existed). The same will work for 2.7 after the branch is deleted. _______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/CUMLWTRVXDJJCORQ55JQEQANGNZVWI3P/
