add sync script

This commit is contained in:
nazunalika 2022-06-02 06:38:49 -07:00
parent 93b5cdaa93
commit 48081bed22
Signed by: label
GPG Key ID: 6735C0E1BD65D048
1 changed files with 10 additions and 0 deletions

10
sync-from-upstream Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
echo "Fetching from upstream"
git fetch https://gitlab.com/redhat/centos-stream/release-engineering/pungi-centos.git centos-9-stream
echo "Formatting patch and applying..."
git format-patch --stdout -1 FETCH_HEAD | sed -e 's|centos/|rocky/|' | git apply
echo "!! DIFF OF CHANGES !!"
git --no-pager diff HEAD
echo "You may now commit and push."