added a lot of new scripts

This commit is contained in:
Dobromir Popov
2023-10-18 19:31:00 +00:00
parent 47e8b0105c
commit f82836130a
9 changed files with 106 additions and 28 deletions

View File

@ -3,4 +3,20 @@
#store credentals
git config --global credential.helper store
git config --global credential.helper store
#add upstream (when forked)
git remote add upstream https://github.com/petals-infra/health.petals.dev.git
# merge upstream
git fetch upstream
git checkout main
git merge upstream/main --allow-unrelated-histories
git commit -m "Merged upstream/main"
# remove upstream
git remote remove upstream
git remote -v