Skip to content

Instantly share code, notes, and snippets.

@ushkinaz
Created February 23, 2025 22:49
Show Gist options
  • Save ushkinaz/426f3c8476b24b737dfca2de70b6a660 to your computer and use it in GitHub Desktop.
Save ushkinaz/426f3c8476b24b737dfca2de70b6a660 to your computer and use it in GitHub Desktop.
Reference full github path to backported commit
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
# Purpose:
# Reference sha1 of original repo if GitHub format.
# Repo is hardcoded atm
# Requires https://typicode.github.io/husky/
# Path to the commit message file
COMMIT_MSG_FILE="$1"
# Extract the cherry-picked commit hash
CHERRY_PICKED_COMMIT=$(sed -nE 's/.*\(cherry picked from commit ([0-9a-f]+)\).*/\1/p' "$COMMIT_MSG_FILE")
if [ -n "$CHERRY_PICKED_COMMIT" ]; then
sed -i -E 's/\(cherry picked from commit ([0-9a-f]+)\)/\(Backported from nornagon\/cdda-guide@\1\)/' "$COMMIT_MSG_FILE"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment