Add helper script for testing remote forks/PRs

This commit is contained in:
GutPuncher 2023-11-20 02:32:18 -05:00
parent d0fbd492ef
commit 622c12b7ac
No known key found for this signature in database
GPG key ID: 38CE0A7B6841D1C7

22
build/git-pr-switch.sh Executable file
View file

@ -0,0 +1,22 @@
#!/bin/sh
#
# Checkout a (PR) fork branch locally for testing.
#
#
echo
echo "git-pr-switch.sh -- Checkout a (PR) fork branch locally for testing."
echo
echo "Clean up your working directory before running this script."
echo
read -p "Enter fork author username: " FORK_USERNAME
echo $FORK_USERNAME
read -p "Enter fork branch name: " FORK_BRANCH
echo $FORK_BRANCH
FORK_LOCAL=$FORK_BRANCH"-testing"
echo "Creating new local branch for testing: "$FORK_LOCAL" ..."
git checkout -b $FORK_LOCAL
echo "Pulling changes from user's branch into new local branch..."
git pull https://github.com/$FORK_USERNAME/ZealOS.git $FORK_BRANCH