move scripts to own dir

This commit is contained in:
Louis Abel 2023-09-22 12:56:19 -07:00
parent f4fb0ee677
commit 1a75e364e2
Signed by: label
GPG Key ID: B37E62D143879B36
4 changed files with 15 additions and 1 deletions

View File

@ -7,7 +7,7 @@ fi
echo "Fetching from upstream"
git fetch https://gitlab.com/redhat/centos-stream/release-engineering/comps.git main
echo "Formatting patch and applying..."
git format-patch --stdout ${HOWMANY} FETCH_HEAD | sed -e 's/centos-stream-9/rocky-9-lh/ ; s/centos-stream-10/rocky-10-lh/' | git apply
git format-patch --stdout ${HOWMANY} FETCH_HEAD | sed -e 's/centos-stream-9/rocky-9-lh/' | git apply
echo "!! DIFF OF CHANGES !!"
git --no-pager diff HEAD

14
scripts/sync-from-upstream-10 Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
HOWMANY="-$1"
if [ -z $1 ]; then
HOWMANY="-1"
fi
echo "Fetching from upstream"
git fetch https://gitlab.com/redhat/centos-stream/release-engineering/comps.git c10s
echo "Formatting patch and applying..."
git format-patch --stdout ${HOWMANY} FETCH_HEAD | sed -e 's/centos-stream-10/rocky-10-lh/' | git apply
echo "!! DIFF OF CHANGES !!"
git --no-pager diff HEAD
echo "You may now commit and push."