Synchronize Update From The Starterpack - Estia-advanced-programming/pandora-public GitHub Wiki
The teacher team will sometimes update the base repository with new update
Open the terminal in VScode (
It is not necessary to create a local branch, but i
# Add the startpack as a remote
git remote add starterPack https://github.com/Estia-advanced-programming/pandora-starterpack.git
git fetch starterPack --prune
Optionally you can have a local branch to see the change locally.
# Create a local branch that track the main
git checkout -B temp
git checkout -B starterPack-main --track starterPack/main
git
git checkout -
git fetch starterPack --prune
git merge starterPack/main -X theirs -m 'chore(update): merge modification from starter pack'