Qu’est-ce que tu n’as pas compris ? C’est juste un script, il suffit de l’appeler avec python githash.py, en lisant le début de la fonction main il semble attendre juste le chemin du blob/tree dont tu veux le hash. Pas sûr que ce soit très utile, git hash-object doit faire le taf, non ?
Je n’avais pas compris les paramètres mais j’ai réussi à le faire fonctionner j’obtenais un autre sha aussi. Donc finalement mon script n’est pas une bonne idée.
Your code contains a problem, however fixing it doesn’t remove the discrepancy in the A2 case.
The problem with your code
The official git algorithm for computing hashes on trees drops leading zeros from the mode field. In your examples, that field contains values 100644 and 040000, and the latter is recorded by git as 40000.
But adding removal of leading zeros1 to your perl script still doesn’t fix the A2 case (although the computed hash changes, it is still different from the expected one):
The explanation is that the A2 hash 4ef57de8e81c8415d6da2b267872e602b1f28cfe points to a commit object rather than a tree. That commit object in turn refers to the tree with hash c5c701b8114582e3bb2e353aac157a7febfcd33b, which is exactly the value computed by the fixed code:
Had you used for the A2 query the tree rather than the commit hash (try this) you wouldn’t have had any problem in the first place.
An arguable issue with the GitHub API is that it silently resolves a commit hash to the underlying tree instead of returning an error or including in the response an indication of what happened (for example, by setting the sha field to the hash of the tree rather than the query value).
The quick&dirty fix won’t work correctly in one case, when the mode field consists of only zeros. In that case the mode field will be completely erased instead of being replaced by a single zero. However that case cannot occur in practice, since an object with such a mode value would be simply inaccessible to git.
Connectez-vous pour pouvoir poster un message.
Connexion
Pas encore membre ?
Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte