Git

Keeping fork up to date

git remote -v
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
git remote -v

git fetch upstream
git checkout master
git merge upstream/main
git push origin master:master