From 5049db8c637e7e0d82fbe55fc3fb6665d52db4e8 Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 8 Feb 2024 13:38:38 +0100 Subject: [PATCH] Added a backport helper script. --- bp.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 bp.sh diff --git a/bp.sh b/bp.sh new file mode 100755 index 000000000..d9fab11d9 --- /dev/null +++ b/bp.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +rm -f bp.patch + +cd ../godot + +rm -f bp.patch + +git format-patch -1 "$1" --stdout > bp.patch + +mv bp.patch ../pandemonium_engine_backport/ + +git am --ignore-whitespace --ignore-space-change -3 < bp.patch + +