Skip to content

Commit

Permalink
switch from tree hashes to commit hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
antheas committed Aug 4, 2024
1 parent 92afe86 commit d94536e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rechunk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def get_commits(

out = ""
try:
cmd = f"git --git-dir='{git_dir}/.git' log --format=\"%t/%T/%s\" --no-merges {prev_rev}..{revision}"
cmd = f"git --git-dir='{git_dir}/.git' log --format=\"%h/%H/%s\" --no-merges {prev_rev}..{revision}"
for commit in (
subprocess.run(cmd, stdout=subprocess.PIPE, shell=True)
.stdout.decode("utf-8")
Expand Down

0 comments on commit d94536e

Please sign in to comment.