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 brett.cannon, ezio.melotti, ned.deily, r.david.murray, serhiy.storchaka, vstinner
Date 2017-11-29.17:51:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511977864.76.0.213398074469.issue32159@psf.upfronthosting.co.za>
In-reply-to
Content
> How have you created PR 4639? What git commands were used?

"git revert fe2d5babba5d26de2093b6518316b268488187be", then I modified the commit to only revert svnmap (git commit --amend).

Git internal storage is fully based on sha1. Identical objects should be merged naturally.

My PR 4639 is made of a single commit: 58f0b38b4058bfaa45a9896aca2b07f02b2de486. You can inspect it using:

$ git ls-tree 58f0b38b4058bfaa45a9896aca2b07f02b2de486 Misc/svnmap.txt
100644 blob 142be7fc206e9d06d5cf62f6500ef987c0441087	Misc/svnmap.txt

Compare it with the svnmap.txt *before* my revert:

$ git ls-tree fe2d5babba5d26de2093b6518316b268488187be^ Misc/svnmap.txt
100644 blob 142be7fc206e9d06d5cf62f6500ef987c0441087	Misc/svnmap.txt

=> *same* blob object (blob sha1: 142be7fc206e9d06d5cf62f6500ef987c0441087)
History
Date User Action Args
2017-11-29 17:51:04vstinnersetrecipients: + vstinner, brett.cannon, ned.deily, ezio.melotti, r.david.murray, serhiy.storchaka
2017-11-29 17:51:04vstinnersetmessageid: <1511977864.76.0.213398074469.issue32159@psf.upfronthosting.co.za>
2017-11-29 17:51:04vstinnerlinkissue32159 messages
2017-11-29 17:51:04vstinnercreate