STINNER Victor <victor.stin...@gmail.com> added the comment:

> 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)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32159>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to