Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/patch
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ echo "* STAGING *"
echo "************************************"
echo ""
# Create a blank branch to work on
git switch --orphan tatter/scratch
git checkout --orphan tatter/scratch
git rm -rf .

# Bring over just what we need to recreate the framework
git checkout "$BASE" -- .gitignore composer.*
Expand Down Expand Up @@ -183,7 +184,7 @@ git commit -m "Patch framework" --no-verify
rm composer.*

# Create the new branch from base
git switch -c tatter/patches "$BASE"
git checkout -b tatter/patches "$BASE"

# Restore the original state of vendor/
composer install --no-scripts > /dev/null
Expand Down