We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the code_party_kp wiki!
Exercise1
main
git remote add upstream https://github.com/Systems-Development-and-Frameworks/homework.git
git fetch upstream
git checkout main
Note that --allow-unrelated-histories is needed since we will also be updating main with our own code.
--allow-unrelated-histories
git merge upstream/main --allow-unrelated-histories
for more info see this blog.