You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def get_patch_id(commit: str) -> str:
"""
Get patch-id of a commit.
a patch id is a unique ID for a patch (git show)
ref: https://git-scm.com/docs/git-patch-id
"""
with Repo(repo_path) as repo:
with tempfile.TemporaryFile() as temp_file:
# output_stream = BytesIO()
repo.git.show(commit, output_stream=temp_file)
temp_file.seek(0)
return repo.git.patch_id(istream=temp_file).split()[0]
You would have to use repo.patch_id() directly and add options to receive the running process, through which one then can pass the commit to generate a patch-id for. It's cumbersome, and probably easier just to Popen to run git directly.
def get_patch_id(commit: str) -> str:
"""
Get patch-id of a commit.
a patch id is a unique ID for a patch (git show)
ref: https://git-scm.com/docs/git-patch-id
"""
with Repo(repo_path) as repo:
with tempfile.TemporaryFile() as temp_file:
# output_stream = BytesIO()
repo.git.show(commit, output_stream=temp_file)
temp_file.seek(0)
return repo.git.patch_id(istream=temp_file).split()[0]
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.
Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.
🎥 Watch TMZ Live
TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.
I got it to work with this: