mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Add helper script for testing remote forks/PRs
This commit is contained in:
parent
d0fbd492ef
commit
622c12b7ac
1 changed files with 22 additions and 0 deletions
22
build/git-pr-switch.sh
Executable file
22
build/git-pr-switch.sh
Executable 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue